From f67c1c3656439396116a9b48daae7628ce15a994 Mon Sep 17 00:00:00 2001 From: deeplow Date: Mon, 25 Jul 2022 16:29:25 +0100 Subject: [PATCH] fix TypeErrors "object is not subscriptable" The type hint shoudld be List[] instead of list[] [1] and TypeError: 'ABCMeta' object is not subscriptable (using instead typing.Callable). [1]: https://mail.python.org/pipermail/python-dev/2017-April/147818.html --- dangerzone/container.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dangerzone/container.py b/dangerzone/container.py index e80b76b..97a54e7 100644 --- a/dangerzone/container.py +++ b/dangerzone/container.py @@ -5,8 +5,7 @@ import platform import shutil import subprocess import tempfile -from collections.abc import Callable -from typing import List, Optional +from typing import Callable, List, Optional import appdirs