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.
2 parents 8540fb4 + a1e5a4a commit ce790e9Copy full SHA for ce790e9
packages/toolbox-core/src/toolbox_core/protocol.py
@@ -41,7 +41,7 @@ def __get_type(self) -> Type:
41
elif self.type == "array":
42
if self.items is None:
43
raise Exception("Unexpected value: type is 'list' but items is None")
44
- return list[self._items.to_type()] # type: ignore
+ return list[self.items.__get_type()] # type: ignore
45
46
raise ValueError(f"Unsupported schema type: {self.type}")
47
packages/toolbox-core/src/toolbox_core/version.py
@@ -12,4 +12,4 @@
12
# See the License for the specific language governing permissions and
13
# limitations under the License.
14
15
-__version__ = "0.1.0"
+__version__ = "0.0.1"
0 commit comments