Skip to content

Commit

Permalink
Fix var name
Browse files Browse the repository at this point in the history
  • Loading branch information
fschlueter committed Jan 5, 2024
1 parent e731751 commit f5e8f0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NuRadioReco/detector/RNO_G/rnog_detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ def __init__(self, database_connection='RNOG_test_public', log_level=logging.INF
st_id: 1 for st_id in self.__buffered_stations}
self.__default_values = import_dict["default_values"]
else:
self.logger.error(f"{pickle_file} with unknown version.")
raise ReferenceError(f"{pickle_file} with unknown version.")
self.logger.error(f"{detector_file} with unknown version.")
raise ReferenceError(f"{detector_file} with unknown version.")

# Allow overwriting the hard-coded values
self.__default_values.update(over_write_handset_values)
Expand Down

0 comments on commit f5e8f0e

Please sign in to comment.