From 02cbde2fc158e5565e4cc434be715c1064dc5aa9 Mon Sep 17 00:00:00 2001 From: cachho Date: Thu, 27 Jul 2023 15:56:18 +0200 Subject: [PATCH] docs: fix argument out of order (#374) --- embedchain/config/apps/AppConfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embedchain/config/apps/AppConfig.py b/embedchain/config/apps/AppConfig.py index 615f8f2d..548839ab 100644 --- a/embedchain/config/apps/AppConfig.py +++ b/embedchain/config/apps/AppConfig.py @@ -20,9 +20,9 @@ class AppConfig(BaseAppConfig): """ :param log_level: Optional. (String) Debug level ['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 port: Optional. Port for the database server. + :param id: Optional. ID of the app. Document metadata will have this id. """ super().__init__( log_level=log_level, embedding_fn=AppConfig.default_embedding_function(), host=host, port=port, id=id