Skip to content

Commit

Permalink
remove extra space
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemccabe committed Oct 30, 2023
1 parent 29eb161 commit 4c463eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metplus/util/string_template_substitution.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def format_hms(fmt, obj):
# i.e. 90 minutes %M => 90, but %H%M => 0130
days = obj // 86400
hours = obj // 3600
minutes = obj // 60
minutes = obj // 60
seconds = obj

# if days are specified, change hours, minutes, and seconds to relative
Expand Down

0 comments on commit 4c463eb

Please sign in to comment.