1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-19 05:58:09 +00:00

feat(core): Allow Any type in is_type_of().

[no changelog]
This commit is contained in:
Andrew Kozlik 2022-08-19 10:29:48 +02:00 committed by Andrew Kozlik
parent 2f6a7096da
commit b5cb9cb035
2 changed files with 315 additions and 315 deletions

View File

@ -59,6 +59,6 @@ def member_type(field):
% endif # if fields
@classmethod
def is_type_of(cls, msg: protobuf.MessageType) -> TypeGuard["${message.name}"]:
def is_type_of(cls, msg: Any) -> TypeGuard["${message.name}"]:
return isinstance(msg, cls)
% endfor

File diff suppressed because it is too large Load Diff