fix(signarl): wrong msgpack encode

This commit is contained in:
MingxuanGame
2025-08-01 11:00:57 +00:00
parent eb3f1823b1
commit d399cb52e2
5 changed files with 50 additions and 14 deletions

View File

@@ -5,7 +5,7 @@ class APIMod:
@property
def acronym(self) -> str: ...
@property
def settings(self) -> str: ...
def settings(self) -> dict[str, Any]: ...
def encode(obj: Any) -> bytes: ...
def decode(data: bytes) -> Any: ...