Skip to content

Commit 01ce75a

Browse files
committed
Update uv
1 parent caf8e1b commit 01ce75a

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

text_2_sql/text_2_sql_core/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ snowflake = [
4141
]
4242
databricks = [
4343
"databricks-sql-connector>=3.0.1",
44+
"pyarrow>=14.0.2",
4445
]
4546

4647
[build-system]

text_2_sql/text_2_sql_core/src/text_2_sql_core/data_dictionary/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,7 @@ def create(
7575
data_dictionary_creator = TSQLDataDictionaryCreator(
7676
single_file=single_file, output_directory=output_directory
7777
)
78-
except ImportError as e:
79-
print(e)
78+
except ImportError:
8079
detailed_error = f"""Failed to import {
8180
engine.value} Data Dictionary Creator. Check you have installed the optional dependencies for this database engine."""
8281
rich_print("Text2SQL Data Dictionary Creator Failed ❌")
@@ -87,6 +86,7 @@ def create(
8786
try:
8887
asyncio.run(data_dictionary_creator.create_data_dictionary())
8988
except Exception as e:
89+
logging.error(e)
9090
rich_print("Text2SQL Data Dictionary Creator Failed ❌")
9191

9292
rich_print(f"Error Messages: {e}")

uv.lock

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)