From 1d27a2227fe1b365e7ff2412fc8ef26efdfc6b6a Mon Sep 17 00:00:00 2001 From: Sultan Iman Date: Thu, 21 Mar 2024 07:41:35 +0100 Subject: [PATCH] Add comments --- dlt/cli/pipeline_command.py | 1 + dlt/helpers/streamlit_app/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/dlt/cli/pipeline_command.py b/dlt/cli/pipeline_command.py index 10c7929e0a..0eb73ad7a8 100644 --- a/dlt/cli/pipeline_command.py +++ b/dlt/cli/pipeline_command.py @@ -117,6 +117,7 @@ def _display_pending_packages() -> Tuple[Sequence[str], Sequence[str]]: "--client.showSidebarNavigation", "false", ] + if hot_reload: streamlit_cmd.append("--server.runOnSave") streamlit_cmd.append("true") diff --git a/dlt/helpers/streamlit_app/__init__.py b/dlt/helpers/streamlit_app/__init__.py index c18cbc419e..b304195a5a 100644 --- a/dlt/helpers/streamlit_app/__init__.py +++ b/dlt/helpers/streamlit_app/__init__.py @@ -1,6 +1,6 @@ from dlt.common.exceptions import MissingDependencyException - +# FIXME: Remove this after implementing package installer try: import streamlit except ModuleNotFoundError: