From 5f3368b2f78b3565e5091edc541e045aa5b4ba58 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Thu, 28 Nov 2024 20:33:23 -0800 Subject: [PATCH] umu_runtime: add ignore for mypy --- umu/umu_runtime.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/umu/umu_runtime.py b/umu/umu_runtime.py index 90b4e51ba..26d52fd7b 100644 --- a/umu/umu_runtime.py +++ b/umu/umu_runtime.py @@ -473,7 +473,8 @@ def _restore_umu_platformid( runtime_base: Path, runtime_ver: RuntimeVersion, session_pools: SessionPools, -) -> None | str: + # Ignore the mypy error due to false positive Any return. +) -> None | str: # type: ignore url: str = "" _, http_pool = session_pools codename, _ = runtime_ver