filesystem.py: Fix type annotation of read_binary_dec()

Change-Id: I781fc0c564a318a6f9b2ec8dccf9f8865bff0e48
This commit is contained in:
Harald Welte 2021-04-03 09:01:24 +02:00 committed by laforge
parent 236a65f02f
commit 2d4a64b43d
1 changed files with 1 additions and 1 deletions

View File

@ -966,7 +966,7 @@ class RuntimeState(object):
raise TypeError("Only works with TransparentEF")
return self.card._scc.read_binary(self.selected_file.fid, length, offset)
def read_binary_dec(self) -> dict:
def read_binary_dec(self) -> Tuple[dict, str]:
"""Read [part of] a transparent EF binary data and decode it.
Args: