From 6a43513bde79503f0c30915e0df8945e73622428 Mon Sep 17 00:00:00 2001 From: M1nd3r Date: Fri, 26 Apr 2024 19:56:47 +0200 Subject: [PATCH] fix(core): remove unnecessary warning suppresion in usb.py --- core/src/usb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/usb.py b/core/src/usb.py index c08b6fcc6..fef89f3d7 100644 --- a/core/src/usb.py +++ b/core/src/usb.py @@ -19,7 +19,7 @@ _WEBAUTHN_PORT_OFFSET = const(2) _VCP_PORT_OFFSET = const(3) if utils.EMULATOR: - import uos # pyright: ignore[reportMissingModuleSource] + import uos UDP_PORT = int(uos.getenv("TREZOR_UDP_PORT") or "21324")