Skip to content

Commit 29ba043

Browse files
Update Lib/test/test_strptime.py
style alignment, add space after function arguments as requested Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
1 parent f56f54a commit 29ba043

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_strptime.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -659,8 +659,8 @@ def test_strptime_F_format(self):
659659
def test_strptime_T_format(self):
660660
test_time = "15:00:00"
661661
self.assertEqual(
662-
time.strptime(test_time,"%T"),
663-
time.strptime(test_time,"%H:%M:%S")
662+
time.strptime(test_time, "%T"),
663+
time.strptime(test_time, "%H:%M:%S")
664664
)
665665

666666
class Strptime12AMPMTests(unittest.TestCase):

0 commit comments

Comments
 (0)