1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-22 12:32:02 +00:00

refactor(core): remove unnecessary warning suppression in cache thp

This commit is contained in:
M1nd3r 2024-07-24 10:21:38 +02:00
parent 040dd102f2
commit 1c40551ef4

View File

@ -1,12 +1,12 @@
import builtins
from micropython import const # pyright: ignore[reportMissingModuleSource]
from typing import TYPE_CHECKING # pyright: ignore[reportShadowedImports]
from micropython import const
from typing import TYPE_CHECKING
from storage.cache_common import DataCache
from trezor import utils
if TYPE_CHECKING:
from typing import TypeVar # pyright: ignore[reportShadowedImports]
from typing import TypeVar
T = TypeVar("T")