Skip to content

Commit f830e4c

Browse files
committed
Oh look, the ??? typing seems fixed.
1 parent 0d44f67 commit f830e4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

referencing/_core.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -562,8 +562,8 @@ def combine(self, *registries: Registry[D]) -> Registry[D]:
562562
anchors = anchors.update(registry._anchors)
563563
uncrawled = uncrawled.update(registry._uncrawled)
564564

565-
if registry._retrieve is not _fail_to_retrieve: # type: ignore[reportUnnecessaryComparison] ???
566-
if registry._retrieve is not retrieve is not _fail_to_retrieve: # type: ignore[reportUnnecessaryComparison] ???
565+
if registry._retrieve is not _fail_to_retrieve:
566+
if registry._retrieve is not retrieve is not _fail_to_retrieve:
567567
raise ValueError( # noqa: TRY003
568568
"Cannot combine registries with conflicting retrieval "
569569
"functions.",

0 commit comments

Comments
 (0)