Skip to content

Commit d367f6d

Browse files
committed
fix(Vm): concatenation syntax error
1 parent dec2c89 commit d367f6d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/zenkit/daedalus_vm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def push(self, val: DaedalusType) -> None:
103103
elif isinstance(val, str):
104104
DLL.ZkDaedalusVm_pushString(self._handle, val.encode("windows-1252"))
105105
else:
106-
raise TypeError("Unsupported type: " + type(val))
106+
raise TypeError(f"Unsupported type: {type(val)}")
107107

108108
def pop(self, typ: type[DaedalusTypeGeneric]) -> DaedalusTypeGeneric:
109109
if typ == DaedalusInstance:

0 commit comments

Comments
 (0)