From 295d4a490707c459c726374f6ee0da8afb5ec514 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Sun, 4 Feb 2024 22:47:52 +0100 Subject: [PATCH] pylint: apdu_source/pyshark_rspro pySim/apdu_source/pyshark_rspro.py:19:0: W0611: Unused import sys (unused-import) pySim/apdu_source/pyshark_rspro.py:21:0: W0611: Unused pprint imported from pprint as pp (unused-import) pySim/apdu_source/pyshark_rspro.py:25:0: W0611: Unused b2h imported from pySim.utils (unused-import) Change-Id: Ibe8482d8adbb82a74f36b0d64bc5dae27da02b73 --- pySim/apdu_source/pyshark_rspro.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pySim/apdu_source/pyshark_rspro.py b/pySim/apdu_source/pyshark_rspro.py index 039326ad..a0e30edd 100644 --- a/pySim/apdu_source/pyshark_rspro.py +++ b/pySim/apdu_source/pyshark_rspro.py @@ -16,13 +16,11 @@ # along with this program. If not, see . -import sys import logging -from pprint import pprint as pp from typing import Tuple import pyshark -from pySim.utils import h2b, b2h +from pySim.utils import h2b from pySim.apdu import Tpdu from . import ApduSource, PacketType, CardReset