Skip to content

Commit

Permalink
Fix missing whitespace around operator
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterKolczynski-NOAA committed Sep 28, 2024
1 parent 60ce0aa commit 1e92c40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rocoto/gfs_cycled_xml.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def get_cycledefs(self):

if interval_gfs > to_timedelta("0H"):
sdate_gfs = self._base['SDATE_GFS']
edate_gfs = sdate_gfs + (edate - sdate_gfs)//interval_gfs * interval_gfs
edate_gfs = sdate_gfs + ((edate - sdate_gfs) // interval_gfs) * interval_gfs
sdate_gfs_str = sdate_gfs.strftime("%Y%m%d%H%M")
edate_gfs_str = edate_gfs.strftime("%Y%m%d%H%M")
interval_gfs_str = timedelta_to_HMS(interval_gfs)
Expand Down

0 comments on commit 1e92c40

Please sign in to comment.