Fix type hint error

This commit is contained in:
Keith Edmunds 2025-08-17 18:42:01 +01:00
parent 316b4708c6
commit 19b1bf3fde

View File

@ -105,9 +105,7 @@ class FileImporter:
# variable or an instance variable are effectively the same thing. # variable or an instance variable are effectively the same thing.
workers: dict[str, DoTrackImport] = {} workers: dict[str, DoTrackImport] = {}
def __init__( def __init__(self, base_model: PlaylistModel, row_number: int) -> None:
self, base_model: PlaylistModel, row_number: int = None
) -> None:
""" """
Initialise the FileImporter singleton instance. Initialise the FileImporter singleton instance.
""" """