Skip to content

Commit

Permalink
Remove "None" assignment to task_configuration in MapperBase __init__
Browse files Browse the repository at this point in the history
  • Loading branch information
bltravis committed Dec 18, 2024
1 parent 22d7aa2 commit 7158f4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/folio_migration_tools/mapper_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __init__(
self.start_datetime = datetime.now(timezone.utc)
self.folio_client: FolioClient = folio_client
self.library_configuration: LibraryConfiguration = library_configuration
self.task_configuration: AbstractTaskConfiguration = None
self.task_configuration: AbstractTaskConfiguration
self.mapped_folio_fields: dict = {}
self.migration_report: MigrationReport = MigrationReport()
self.num_criticalerrors = 0
Expand Down

0 comments on commit 7158f4c

Please sign in to comment.