Skip to content

Commit

Permalink
Update about_tuples.py
Browse files Browse the repository at this point in the history
Fix typo.
  • Loading branch information
ciceropablo authored Apr 7, 2023
1 parent 71bc330 commit 71bcff7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion koans/about_tuples.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def test_tuple_constructor_can_be_surprising(self):

def test_creating_empty_tuples(self):
self.assertEqual(__ , ())
self.assertEqual(__ , tuple()) #Sometimes less confusing
self.assertEqual(__ , tuple()) # Sometimes less confusing

def test_tuples_can_be_embedded(self):
lat = (37, 14, 6, 'N')
Expand Down

0 comments on commit 71bcff7

Please sign in to comment.