Skip to content

Commit

Permalink
fix: Fixed new test formatting to pass flake8
Browse files Browse the repository at this point in the history
Fixed a few flake8 formatting issues.
  • Loading branch information
chrisarridge committed Jul 3, 2024
1 parent eb6c0b4 commit 9dfe36f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/test_timeliness.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@


def test_short_month():
month_strings = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec']
for index,s in enumerate(month_strings):
assert timeliness.short_month('01-{:02d}-2024'.format(index+1)) == s
month_strings = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
for index, s in enumerate(month_strings):
assert timeliness.short_month('01-{:02d}-2024'.format(index + 1)) == s

0 comments on commit 9dfe36f

Please sign in to comment.