Skip to content

Commit

Permalink
fix(gpjax/base/module.py): add type of value
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-huan committed Jun 27, 2024
1 parent e2a88c4 commit 503d0b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpjax/base/module.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def static_field( # noqa: PLR0913
)


def _inherited_metadata(cls: type) -> Dict[str]:
def _inherited_metadata(cls: type) -> Dict[str, Any]:
meta_data = dict()
for parent_class in cls.mro():
if parent_class is not cls and parent_class is not Module:
Expand Down

0 comments on commit 503d0b6

Please sign in to comment.