diff --git a/core/src/apps/common/seed.py b/core/src/apps/common/seed.py index e8b20d5e2f..d52d30713b 100644 --- a/core/src/apps/common/seed.py +++ b/core/src/apps/common/seed.py @@ -63,7 +63,7 @@ class Slip21Node: if utils.USE_THP: - async def get_seed() -> bytes: + async def get_seed() -> bytes: # type: ignore [Function declaration "get_seed" is obscured by a declaration of the same name] common_seed = context.cache_get(APP_COMMON_SEED) assert common_seed is not None return common_seed diff --git a/python/requirements.txt b/python/requirements.txt index 560f12e2cf..0e61b10193 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -7,3 +7,4 @@ construct>=2.9,!=2.10.55 typing_extensions>=4.7.1 construct-classes>=0.1.2 appdirs>=1.4.4 +cryptography >=43.0.3