Skip to content

Commit

Permalink
Update ic3-data
Browse files Browse the repository at this point in the history
  • Loading branch information
mhuen committed Apr 15, 2024
1 parent 739cdf4 commit 0691653
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ic3_data/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def load_configuration(self, model_path,

config_file = os.path.join(model_path, config_name)
with open(config_file, 'r') as stream:
cfg_data = yaml.safe_load(stream)
cfg_data = yaml.YAML(typ="safe", pure=True).load(stream)

self.config['num_bins'] = cfg_data['num_bins']
self.config['relative_time_method'] = cfg_data['relative_time_method']
Expand Down

0 comments on commit 0691653

Please sign in to comment.