Skip to content

Commit ce790e9

Browse files
authored
Merge branch 'main' into release-please--branches--main--components--toolbox-core
2 parents 8540fb4 + a1e5a4a commit ce790e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/toolbox-core/src/toolbox_core/protocol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __get_type(self) -> Type:
4141
elif self.type == "array":
4242
if self.items is None:
4343
raise Exception("Unexpected value: type is 'list' but items is None")
44-
return list[self._items.to_type()] # type: ignore
44+
return list[self.items.__get_type()] # type: ignore
4545

4646
raise ValueError(f"Unsupported schema type: {self.type}")
4747

packages/toolbox-core/src/toolbox_core/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.1.0"
15+
__version__ = "0.0.1"

0 commit comments

Comments
 (0)