From a6ca5b7cd107a00f5bfb993fae728c15ebb3a2ce Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Wed, 19 Nov 2025 15:31:15 +0100 Subject: [PATCH] card_key_provider: remove unnecessary class property definitions The two properties csv_file and csv_filename are defined by the constructor anyway, let's remove the declaration in the class body because it is not needed. Change-Id: Ibbe8e17b03a4ba0041c0e9990a5e9614388d9c03 --- pySim/card_key_provider.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/pySim/card_key_provider.py b/pySim/card_key_provider.py index 66e96e9d..0827b70f 100644 --- a/pySim/card_key_provider.py +++ b/pySim/card_key_provider.py @@ -173,9 +173,6 @@ class CardKeyProvider(abc.ABC): class CardKeyProviderCsv(CardKeyProvider): """Card key provider implementation that allows to query against a specified CSV file.""" - csv_file = None - filename = None - def __init__(self, csv_filename: str, transport_keys: dict): """ Args: