From 4658f86108c8970cef03d5e7e35dc974b3c33119 Mon Sep 17 00:00:00 2001 From: Frank Morgner Date: Wed, 28 Apr 2021 17:56:06 +0200 Subject: [PATCH] fixed syntax error in python 2.7 --- virtualsmartcard/src/vpicc/virtualsmartcard/VirtualSmartcard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/virtualsmartcard/src/vpicc/virtualsmartcard/VirtualSmartcard.py b/virtualsmartcard/src/vpicc/virtualsmartcard/VirtualSmartcard.py index 72a1630..4185886 100644 --- a/virtualsmartcard/src/vpicc/virtualsmartcard/VirtualSmartcard.py +++ b/virtualsmartcard/src/vpicc/virtualsmartcard/VirtualSmartcard.py @@ -370,7 +370,7 @@ class Iso7816OS(SmartcardOS): self.mf.current = self.mf -def loadMitMFromPath(path: str): +def loadMitMFromPath(path): from importlib import import_module from pathlib import Path def onNth(tup,ind,func):