docs: fix argument out of order (#374)

This commit is contained in:
cachho
2023-07-27 15:56:18 +02:00
committed by GitHub
parent a868fce036
commit 02cbde2fc1

View File

@@ -20,9 +20,9 @@ class AppConfig(BaseAppConfig):
""" """
:param log_level: Optional. (String) Debug level :param log_level: Optional. (String) Debug level
['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL']. ['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL'].
:param id: Optional. ID of the app. Document metadata will have this id.
:param host: Optional. Hostname for the database server. :param host: Optional. Hostname for the database server.
:param port: Optional. Port for the database server. :param port: Optional. Port for the database server.
:param id: Optional. ID of the app. Document metadata will have this id.
""" """
super().__init__( super().__init__(
log_level=log_level, embedding_fn=AppConfig.default_embedding_function(), host=host, port=port, id=id log_level=log_level, embedding_fn=AppConfig.default_embedding_function(), host=host, port=port, id=id