Skip to content

Commit

Permalink
Merge branch 'master' into download_datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
martwo committed Jul 30, 2023
2 parents 087dc5e + 729b1d0 commit 80eb22d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion skyllh/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
convenience utility functions to set different configuration settings.
"""

import copy
import os.path
import sys

Expand Down Expand Up @@ -104,7 +105,7 @@ def __init__(
) -> None:
"""Initializes a new Config instance holding the base configuration.
"""
super().__init__(_BASECONFIG)
super().__init__(copy.deepcopy(_BASECONFIG))

@classmethod
@tool.requires('yaml')
Expand Down

0 comments on commit 80eb22d

Please sign in to comment.