From 144dc6186974df40cf79daa465d6c644b7671651 Mon Sep 17 00:00:00 2001 From: Jordi Mas Date: Thu, 6 Oct 2022 11:52:49 +0200 Subject: [PATCH] Fix Callable exception in new versions of Python --- android2po/commands.py | 1 + 1 file changed, 1 insertion(+) diff --git a/android2po/commands.py b/android2po/commands.py index 8f79458..31e8dab 100644 --- a/android2po/commands.py +++ b/android2po/commands.py @@ -2,6 +2,7 @@ import os import collections +collections.Callable = collections.abc.Callable try: from cStringIO import StringIO as BytesIO except ImportError: # pragma: no cover