Skip to content

Commit

Permalink
add whitespace to pass pylint test.
Browse files Browse the repository at this point in the history
  • Loading branch information
cshartsough committed Nov 14, 2024
1 parent f7dbdca commit 031c7e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adb_graphics/datahandler/gribfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def free_fcst_names(self, ds, fcst_type):
# MASSDEN is a special case when ending in "avg_1'"
if var.split('_')[0] == 'MASSDEN' and var.split('_')[-2] == 'avg':
print(f'Special change to MASSDEN avg_1 name to avg1h_1')
ret[var] = var.replace('avg','avg1h')
ret[var] = var.replace('avg', 'avg1h')
else:
# Only rename these variables at late hours
odd_variables = [
Expand Down

0 comments on commit 031c7e7

Please sign in to comment.