From 38a23b53df483c2a1e69eb65c8656eb91821e9eb Mon Sep 17 00:00:00 2001 From: Tarun Date: Mon, 6 Jan 2025 20:21:39 +0530 Subject: [PATCH] refactor: rename merge_Configs to merge_configs --- src/apps/backend/modules/config/config_service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/apps/backend/modules/config/config_service.py b/src/apps/backend/modules/config/config_service.py index e384b902..0fd1cf25 100644 --- a/src/apps/backend/modules/config/config_service.py +++ b/src/apps/backend/modules/config/config_service.py @@ -15,7 +15,7 @@ class ConfigService: def load_config() -> None: app_env_config = ConfigService.initialize_config() os_env_config = ConfigService.load_environment_variables() - ConfigService._config = ConfigService.merge_Configs(app_env_config,os_env_config) + ConfigService._config = ConfigService.merge_configs(app_env_config,os_env_config) ConfigService.log_config() @staticmethod @@ -47,7 +47,7 @@ def load_environment_variables() -> ConfigParser: return env_config @staticmethod - def merge_Configs(app_env_config:ConfigParser,os_env_config:ConfigParser)->ConfigParser: + def merge_configs(app_env_config:ConfigParser,os_env_config:ConfigParser)->ConfigParser: merge_config = app_env_config for section in os_env_config.sections(): if section not in app_env_config.sections():