Skip to content

Commit

Permalink
Update databricks.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinnnyshinshin committed Dec 18, 2024
1 parent d4ff640 commit 47fffd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion great_expectations/compatibility/databricks.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

try:
# sqlalchemy >= 2.0
DOUBLE = sqltypes.DOUBLE # type: ignore[misc, assignment]
DOUBLE = sqltypes.DOUBLE
except (ImportError, AttributeError):

Check warning on line 40 in great_expectations/compatibility/databricks.py

View check run for this annotation

Codecov / codecov/patch

great_expectations/compatibility/databricks.py#L40

Added line #L40 was not covered by tests
# sqlalchemy <= 2.0
DOUBLE = sqltypes.DECIMAL # type: ignore[misc, assignment]

Check warning on line 42 in great_expectations/compatibility/databricks.py

View check run for this annotation

Codecov / codecov/patch

great_expectations/compatibility/databricks.py#L42

Added line #L42 was not covered by tests
Expand Down

0 comments on commit 47fffd5

Please sign in to comment.