We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When the BibsTransformer's HridHandling is set to preserve001, the check for set membership on line
preserve001
folio_migration_tools/src/folio_migration_tools/marc_rules_transformation/rules_mapper_bibs.py
Line 481 in 4c59825
raises TypeError: typing.Set[str] is not a generic class
TypeError: typing.Set[str] is not a generic class
The problem is at line
Line 55 in 4c59825
This is assigning the type hint Set[str] to self.unique_001s and not a set.
Set[str]
self.unique_001s
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When the BibsTransformer's HridHandling is set to
preserve001
, the check for set membership on linefolio_migration_tools/src/folio_migration_tools/marc_rules_transformation/rules_mapper_bibs.py
Line 481 in 4c59825
raises
TypeError: typing.Set[str] is not a generic class
The problem is at line
folio_migration_tools/src/folio_migration_tools/marc_rules_transformation/rules_mapper_bibs.py
Line 55 in 4c59825
This is assigning the type hint
Set[str]
toself.unique_001s
and not a set.The text was updated successfully, but these errors were encountered: