From ddf6a88af61e6c8357884583be5e7ee0073f8323 Mon Sep 17 00:00:00 2001 From: Yunus Emre Geldegul Date: Fri, 19 Aug 2022 23:51:30 +0300 Subject: [PATCH] #454: [tr] fix flake8 E501 problem --- tests/test_tr.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/test_tr.py b/tests/test_tr.py index 59c88c7..da7bacd 100644 --- a/tests/test_tr.py +++ b/tests/test_tr.py @@ -189,7 +189,8 @@ class Num2WordsTRTest(TestCase): {"test": 6, "to": "ordinal_num", "expected": u"6ıncı"}, {"test": -5, "to": "cardinal", "expected": u"eksibeş"}, {"test": -55, "to": "cardinal", "expected": u"eksiellibeş"}, - {"test": -576, "to": "cardinal", "expected": u"eksibeşyüzyetmişaltı"}, + {"test": -576, "to": "cardinal", + "expected": u"eksibeşyüzyetmişaltı"}, {"test": -3, "to": "currency", "expected": u"eksiüçlira"}, ]