From 2f8e20f6235913f9ceb00de5cf7dedc508f62f78 Mon Sep 17 00:00:00 2001 From: i2y <6240399+i2y@users.noreply.github.com> Date: Wed, 4 Feb 2026 08:05:22 +0900 Subject: [PATCH] fix: add type ignore for optional nicegui import --- edda/viewer_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edda/viewer_app.py b/edda/viewer_app.py index 74cdc79..4ef038f 100644 --- a/edda/viewer_app.py +++ b/edda/viewer_app.py @@ -89,7 +89,7 @@ def main() -> None: """Main entry point for the Edda Viewer CLI.""" # Step 1: Check if nicegui is installed try: - import nicegui # noqa: F401 + import nicegui # type: ignore[import-not-found] # noqa: F401 except ImportError: print("Error: Viewer dependencies are not installed.", file=sys.stderr) print("", file=sys.stderr)