From 0e8388269be43c1705375967a18cd6bec5d4d895 Mon Sep 17 00:00:00 2001 From: M1nd3r Date: Mon, 18 Nov 2024 17:14:12 +0100 Subject: [PATCH] fix: try fix ci tests --- core/src/apps/common/seed.py | 2 +- python/requirements.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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