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.
workers: dict[str, DoTrackImport] = {}
def __init__(
self, base_model: PlaylistModel, row_number: int = None
) -> None:
def __init__(self, base_model: PlaylistModel, row_number: int) -> None:
"""
Initialise the FileImporter singleton instance.
"""