mirror of
https://gitea.osmocom.org/sim-card/pysim.git
synced 2026-03-25 14:58:33 +03:00
pySim/filesystem.py: fix compatibility with Python 3.5
Change-Id: Ia4021551bcd28e6020958964f6f4e9b6dc989d94 Related: OS#5111
This commit is contained in:
@@ -65,7 +65,7 @@ class CardFile(object):
|
|||||||
self.parent = parent
|
self.parent = parent
|
||||||
if self.parent and self.parent != self and self.fid:
|
if self.parent and self.parent != self and self.fid:
|
||||||
self.parent.add_file(self)
|
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
|
# Note: the basic properties (fid, name, ect.) are verified when
|
||||||
# the file is attached to a parent file. See method add_file() in
|
# the file is attached to a parent file. See method add_file() in
|
||||||
|
|||||||
Reference in New Issue
Block a user