Skip to content

Commit

Permalink
Update src/eva/eva_driver.py
Browse files Browse the repository at this point in the history
Co-authored-by: Cory Martin <[email protected]>
  • Loading branch information
danholdaway and CoryMartin-NOAA authored May 14, 2024
1 parent da8763b commit f221c64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/eva/eva_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def read_transform_time_series(logger, timing, eva_dict, data_collections):
date += interval
count += 1
# Abort if count hits one million
logger.assert_abort(count < 1000000, 'You are planning to read more than one million ' +
logger.assert_abort(count < 1e6, 'You are planning to read more than one million ' +
'time steps. This is likely an error. Please check your configuration.')

# Get the datasets configuration
Expand Down

0 comments on commit f221c64

Please sign in to comment.