fix: base get_sysconfig

This commit is contained in:
caoqianming 2024-04-28 11:13:23 +08:00
parent b803cac69f
commit 29b88077b4
1 changed files with 0 additions and 1 deletions

View File

@ -350,7 +350,6 @@ def get_sysconfig(key='', reload=False):
with open(SYS_JSON_PATH, 'r', encoding='utf-8') as f:
config = json.loads(f.read())
cache.set('system_config', config)
return config
if key:
k_l = key.split('.')
for k in k_l: