From 636879b02f0acde466492c96cd95f39c00ebeb84 Mon Sep 17 00:00:00 2001 From: Ramiro Medina Date: Mon, 1 May 2023 14:19:50 +0000 Subject: [PATCH] Mypy ignore px --- src/streamsync/command_line.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/streamsync/command_line.py b/src/streamsync/command_line.py index 6fc11e72f..2f8fa526e 100644 --- a/src/streamsync/command_line.py +++ b/src/streamsync/command_line.py @@ -49,7 +49,7 @@ def _perform_checks(command: str, absolute_app_path: str, host: Optional[str]): if command in ("hello"): try: import pandas - import plotly.express + import plotly.express # type: ignore except ImportError: logging.error("Running streamsync hello requires pandas and plotly.express. Install them with:\npip install streamsync[ds]") sys.exit(1)