Skip to content

Commit

Permalink
Fixed bug in load_config (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaiboldeanu authored Dec 12, 2023
1 parent ffa9712 commit 708c418
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oceanstream/settings/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ def load_config(user_config_path=None):
with open(user_config_path, "r") as file:
user_config = json.load(file)
for key in user_config:
config[key].update(user_config[key])
config[key] = user_config[key]

return config

0 comments on commit 708c418

Please sign in to comment.