Skip to content

Commit 0f54b20

Browse files
committed
removed unrequired type ignore
1 parent d913e9f commit 0f54b20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fileformats/core/mixin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ def register_converter(
657657
describe_task(converter_spec.task),
658658
)
659659
return # actually the same task but just imported twice for some reason
660-
prev_unclassified = prev.unclassified # type: ignore[attr-defined]
660+
prev_unclassified = prev.unclassified
661661
unclassified = cls.unclassified # type: ignore[attr-defined]
662662
raise FormatDefinitionError(
663663
f"Cannot register converter from {prev_unclassified} "

0 commit comments

Comments
 (0)