From 4f7f591c5632ccf59724599f080606cd5d8e0f46 Mon Sep 17 00:00:00 2001 From: Vladislav Skukov Date: Sun, 19 May 2019 02:58:25 +0500 Subject: [PATCH] fix --- string_formats.py | 1 + 1 file changed, 1 insertion(+) diff --git a/string_formats.py b/string_formats.py index df540c8..cc0d428 100644 --- a/string_formats.py +++ b/string_formats.py @@ -1,4 +1,5 @@ def choose_numeral_form(l, form1, form2, form5): + l = int(l) l = l % 100 if (l > 10 and l < 20): return form5 -- 2.50.1