From a0040792bf4423ec2a44d6b4407b2dd3365da3d1 Mon Sep 17 00:00:00 2001 From: Vadim Yanitskiy Date: Fri, 9 Apr 2021 22:44:44 +0200 Subject: [PATCH] pySim/filesystem.py: fix compatibility with Python 3.5 Change-Id: Ia4021551bcd28e6020958964f6f4e9b6dc989d94 Related: OS#5111 --- pySim/filesystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pySim/filesystem.py b/pySim/filesystem.py index e97fbf69..097661df 100644 --- a/pySim/filesystem.py +++ b/pySim/filesystem.py @@ -65,7 +65,7 @@ class CardFile(object): self.parent = parent if self.parent and self.parent != self and self.fid: self.parent.add_file(self) - self.shell_commands: List[CommandSet] = [] + self.shell_commands = [] # type: List[CommandSet] # Note: the basic properties (fid, name, ect.) are verified when # the file is attached to a parent file. See method add_file() in