We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 141d5b2 commit 4636772Copy full SHA for 4636772
packages/toolbox-core/src/toolbox_core/protocol.py
@@ -48,7 +48,7 @@ def __get_type(self) -> Type:
48
elif self.type == "object":
49
if isinstance(self.AdditionalProperties, ParameterSchema):
50
value_type = self.AdditionalProperties.__get_type()
51
- base_type = dict[str, value_type]
+ base_type = dict[str, value_type] # type: ignore
52
else:
53
base_type = dict[str, Any]
54
0 commit comments