We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fcfd2b commit 7ff3f91Copy full SHA for 7ff3f91
referencing/_core.py
@@ -552,8 +552,8 @@ def combine(self, *registries: Registry[D]) -> Registry[D]:
552
uncrawled = self._uncrawled
553
retrieve = self._retrieve
554
for registry in registries:
555
- resources = resources.update(registry._resources) # type: ignore[reportUnknownMemberType]
556
- anchors = anchors.update(registry._anchors) # type: ignore[reportUnknownMemberType]
+ resources = resources.update(registry._resources)
+ anchors = anchors.update(registry._anchors)
557
uncrawled = uncrawled.update(registry._uncrawled)
558
559
if registry._retrieve is not _fail_to_retrieve:
0 commit comments