Skip to content

Commit

Permalink
[FIX] E231 missing whitespace after ','
Browse files Browse the repository at this point in the history
  • Loading branch information
ieski authored and KommuSoft committed Aug 18, 2022
1 parent 7109e16 commit b6a80e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_tr.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,9 +184,9 @@ def test_tr(self):
{"test": 101101011010.2, "to": "cardinal",
"expected": u"yüzbirmilyaryüzbirmilyononbirbinonvirgülyirmi"},
{"test": 10, "to": "ordinal_num", "expected": u"10uncu"},
{"test": 1, "to": "ordinal_num","expected": u"1inci"},
{"test": 3, "to": "ordinal_num","expected": u"3üncü"},
{"test": 6, "to": "ordinal_num","expected": u"6ıncı"}
{"test": 1, "to": "ordinal_num", "expected": u"1inci"},
{"test": 3, "to": "ordinal_num", "expected": u"3üncü"},
{"test": 6, "to": "ordinal_num", "expected": u"6ıncı"}
]

for casedata in testcases:
Expand Down

0 comments on commit b6a80e0

Please sign in to comment.