ciyidogan commited on
Commit
d4c330e
·
verified ·
1 Parent(s): 74c6c9c

Update config/config_provider.py

Browse files
Files changed (1) hide show
  1. config/config_provider.py +1 -1
config/config_provider.py CHANGED
@@ -30,7 +30,7 @@ class ConfigProvider:
30
  _instance: Optional[ServiceConfig] = None
31
  _lock = threading.RLock() # Reentrant lock for nested calls
32
  _file_lock = threading.Lock() # Separate lock for file operations
33
- _CONFIG_PATH = Path(__file__).parent.parent / "service_config.jsonc"
34
 
35
  @staticmethod
36
  def _normalize_date(date_str: Optional[str]) -> str:
 
30
  _instance: Optional[ServiceConfig] = None
31
  _lock = threading.RLock() # Reentrant lock for nested calls
32
  _file_lock = threading.Lock() # Separate lock for file operations
33
+ _CONFIG_PATH = Path(__file__).parent / "service_config.jsonc"
34
 
35
  @staticmethod
36
  def _normalize_date(date_str: Optional[str]) -> str: