mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-21 23:18:13 +00:00
fix: try fix fido2-test
[no changelog]
This commit is contained in:
parent
39062a76f8
commit
b6fd98b329
@ -95,6 +95,15 @@ class Emulator:
|
||||
raise RuntimeError
|
||||
return self._client
|
||||
|
||||
@client.setter
|
||||
def client(self, new_client: TrezorClientDebugLink) -> None:
|
||||
"""Setter for the client property to update _client."""
|
||||
if not isinstance(new_client, TrezorClientDebugLink):
|
||||
raise TypeError(
|
||||
f"Expected a TrezorClientDebugLink, got {type(new_client).__name__}."
|
||||
)
|
||||
self._client = new_client
|
||||
|
||||
def make_args(self) -> List[str]:
|
||||
return []
|
||||
|
||||
|
2
vendor/fido2-tests
vendored
2
vendor/fido2-tests
vendored
@ -1 +1 @@
|
||||
Subproject commit 93a68b36f6eeaa605b11d7330aa04f6ae874cf61
|
||||
Subproject commit c827648dd6d44ce1935f8296d905afb9df1de685
|
Loading…
Reference in New Issue
Block a user