Skip to content

Commit 6f24bdf

Browse files
committed
Fixed in pyright or referencing.
1 parent 1e26b0b commit 6f24bdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: referencing_loaders/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def _from_walked(
7575
for path in paths:
7676
contents = json.loads(path.read_text())
7777
if specification is None:
78-
specification = Specification.detect(contents) # type: ignore[reportUnknownMemberType]
78+
specification = Specification.detect(contents)
7979
resource = specification.detect(contents).create_resource(contents)
8080
uri = getattr(path, "as_uri", lambda: "")() # pragma: no cover
8181
yield uri, resource

0 commit comments

Comments
 (0)