From 2d4a64b43d85f9afb6433a2e95500262270b73b3 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sat, 3 Apr 2021 09:01:24 +0200 Subject: [PATCH] filesystem.py: Fix type annotation of read_binary_dec() Change-Id: I781fc0c564a318a6f9b2ec8dccf9f8865bff0e48 --- pySim/filesystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pySim/filesystem.py b/pySim/filesystem.py index 55a71303..3eea2f43 100644 --- a/pySim/filesystem.py +++ b/pySim/filesystem.py @@ -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: