Skip to content

Commit

Permalink
Revert whitespace changes
Browse files Browse the repository at this point in the history
  • Loading branch information
shankari authored Feb 9, 2024
1 parent b16df27 commit 53d57a0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion emission/analysis/modelling/trip_model/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,11 @@ def get_minimum_trips():
raise TypeError(msg)
return minimum_trips



def get_maximum_stored_model_count():
maximum_stored_model_count = get_config_value_or_raise('maximum_stored_model_count')
if not isinstance(maximum_stored_model_count, int):
msg = f"config key 'maximum_stored_model_count' not an integer in config file {config_filename}"
raise TypeError(msg)
return maximum_stored_model_count
return maximum_stored_model_count

0 comments on commit 53d57a0

Please sign in to comment.