We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5b4e99 commit c019abaCopy full SHA for c019aba
schemastore/__init__.py
@@ -50,7 +50,7 @@ def registry(**kwargs: Any) -> SchemaRegistry:
50
store = _Store(**kwargs)
51
52
def retrieve(uri: str) -> SchemaResource:
53
- return Resource.from_contents(store.get_schema(uri)) # type: ignore[reportUnknownMemberType, reportUnknownVariableType]
+ return Resource.from_contents(store.get_schema(uri))
54
55
return Registry(retrieve=retrieve)
56
0 commit comments