[FIX] E231 missing whitespace after ','

This commit is contained in:
ismail eski
2022-08-18 18:48:10 +03:00
parent c19ea13145
commit a05f6e5c1d

View File

@@ -184,9 +184,9 @@ class Num2WordsTRTest(TestCase):
{"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: