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
This commit is contained in:
Philipp Maier
2025-11-19 15:31:15 +01:00
parent bcca2bffc2
commit a6ca5b7cd1

View File

@@ -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: