Skip to content

Commit

Permalink
lint mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
nofalx committed Sep 9, 2023
1 parent 5bd7ba4 commit c391a9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ninja/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def __getattr__(self, key: str) -> Any:
# if key.startswith("__pydantic"):
# return getattr(self._obj, key)

resolver = self._schema_cls._ninja_resolvers.get(key) # type: ignore
resolver = self._schema_cls._ninja_resolvers.get(key)
if resolver:
value = resolver(getter=self)
else:
Expand Down

0 comments on commit c391a9e

Please sign in to comment.