Skip to content

Commit 728d33a

Browse files
WilliamGentryJesse Whitehouse
andauthored
Remove unused import for SQLAlchemy 2 compatibility (#128)
Signed-off-by: William Gentry <[email protected]> Signed-off-by: Jesse Whitehouse <[email protected]> Co-authored-by: Jesse Whitehouse <[email protected]>
1 parent ec58144 commit 728d33a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- Fix: Revised SQLAlchemy dialect and examples for compatibility with SQLAlchemy==1.3.x (#173)
99
- Fix: oauth would fail if expired credentials appeared in ~/.netrc (#122)
1010
- Fix: Python HTTP proxies were broken after switch to urllib3 (#158)
11+
- Other: remove unused import in SQLAlchemy dialect
1112
- Other: Relax pandas dependency constraint to allow ^2.0.0 (#164)
1213
- Other: Connector now logs operation handle guids as hexadecimal instead of bytes (#170)
1314
- Other: test_socket_timeout_user_defined e2e test was broken (#144)

src/databricks/sqlalchemy/dialect/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from dateutil.parser import parse
66

77
import sqlalchemy
8-
from sqlalchemy import types, processors, event
8+
from sqlalchemy import types, event
99
from sqlalchemy.engine import default, Engine
1010
from sqlalchemy.exc import DatabaseError, SQLAlchemyError
1111
from sqlalchemy.engine import reflection

0 commit comments

Comments
 (0)