Skip to content

Commit 9a59702

Browse files
scottDBX1886scottDBX1886
authored andcommitted
modified comments on selecting warehouse
1 parent c7549d7 commit 9a59702

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

streamlit/views/tables_edit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def insert_overwrite_table(table_name: str, df: pd.DataFrame, conn):
8181

8282
with tab_a:
8383
http_path_input = st.selectbox(
84-
"Select your Databricks SQL Warehouse", [""] + list(warehouse_paths.keys())
84+
"Select your Databricks SQL Warehouse:", [""] + list(warehouse_paths.keys())
8585
)
8686

8787
catalog_name = st.selectbox(

streamlit/views/tables_read.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def get_table_names(catalog_name, schema_name):
4949

5050
with tab_a:
5151
http_path_input = st.selectbox(
52-
"Select your Databricks SQL Warehouse", [""] + list(warehouse_paths.keys())
52+
"Select your Databricks SQL Warehouse:", [""] + list(warehouse_paths.keys())
5353
)
5454

5555
catalog_name = st.selectbox(

0 commit comments

Comments
 (0)