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 f30c649 commit 0a50892Copy full SHA for 0a50892
packages/toolbox-core/src/toolbox_core/protocol.py
@@ -45,7 +45,7 @@ def __get_type(self) -> Type:
45
if self.items is None:
46
raise Exception("Unexpected value: type is 'list' but items is None")
47
base_type = list[self.items.__get_type()] # type: ignore
48
- elif self.type == "map":
+ elif self.type == "object":
49
if self.valueType:
50
if self.valueType == "string":
51
base_type = dict[str, str]
0 commit comments