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
This commit is contained in:
Harald Welte 2024-02-04 22:47:52 +01:00
parent 9bc016e777
commit 295d4a4907
1 changed files with 1 additions and 3 deletions

View File

@ -16,13 +16,11 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
import sys
import logging import logging
from pprint import pprint as pp
from typing import Tuple from typing import Tuple
import pyshark import pyshark
from pySim.utils import h2b, b2h from pySim.utils import h2b
from pySim.apdu import Tpdu from pySim.apdu import Tpdu
from . import ApduSource, PacketType, CardReset from . import ApduSource, PacketType, CardReset