From 503d0b6f66401ee34a8cb318e279fb0f858d726a Mon Sep 17 00:00:00 2001 From: Stephen Huan Date: Thu, 27 Jun 2024 03:12:10 -0400 Subject: [PATCH] fix(gpjax/base/module.py): add type of value --- gpjax/base/module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpjax/base/module.py b/gpjax/base/module.py index 3d381d3c..3af77825 100644 --- a/gpjax/base/module.py +++ b/gpjax/base/module.py @@ -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: