refactor: remove unnecessary Path() conversion

This commit is contained in:
seppzer0 2024-03-11 10:06:14 +03:00
parent 7067c8a362
commit d7edd45166

View File

@ -47,9 +47,9 @@ def check_duplicates() -> None:
continue
keys_dir = city_dir / 'keys'
handle_keys(Path(keys_dir), KeyTypes.ibtn)
handle_keys(Path(keys_dir), KeyTypes.rfid)
handle_keys(Path(keys_dir), KeyTypes.nfc)
handle_keys(keys_dir, KeyTypes.ibtn)
handle_keys(keys_dir, KeyTypes.rfid)
handle_keys(keys_dir, KeyTypes.nfc)
def main() -> None: