fix Python decoder
This commit is contained in:
parent
a60f4f9ec4
commit
6cfcdc6d0b
4 changed files with 24 additions and 17 deletions
Binary file not shown.
|
@ -5,7 +5,8 @@ name = "Python Test Decoder"
|
|||
|
||||
class Decoder(exports.Decoder):
|
||||
def init(self) -> None:
|
||||
# @TODO it panics for some reasons
|
||||
# @TODO it panics with error `7: 0xae8683 - libcomponentize_py_runtime.so!componentize-py#Dispatch`
|
||||
# - see https://github.com/bytecodealliance/componentize-py/blob/e20d9e6706ff1421cd8001449acb51eb9c87d0c6/runtime/src/lib.rs#L404
|
||||
# host.log(f"{name} initialized")
|
||||
return None
|
||||
|
||||
|
@ -13,4 +14,4 @@ class Decoder(exports.Decoder):
|
|||
return name
|
||||
|
||||
def format_signal_value(self, value: str) -> str:
|
||||
return str + "!"
|
||||
return value + "!"
|
||||
|
|
Reference in a new issue