Skip to content

Commit

Permalink
Remove import
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jvasquezrojas committed Dec 5, 2024
1 parent fdccfcf commit 3af1371
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/snowflake/sqlalchemy/snowdialect.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
from sqlalchemy import exc as sa_exc
from sqlalchemy import util as sa_util
from sqlalchemy.engine import URL, default, reflection
from sqlalchemy.engine.interfaces import IsolationLevel
from sqlalchemy.schema import Table
from sqlalchemy.sql import text
from sqlalchemy.sql.elements import quoted_name
Expand Down Expand Up @@ -148,9 +147,7 @@ class SnowflakeDialect(default.DefaultDialect):

def __init__(
self,
isolation_level: Optional[
IsolationLevel
] = SnowflakeIsolationLevel.READ_COMMITTED.value,
isolation_level: Optional[str] = SnowflakeIsolationLevel.READ_COMMITTED.value,
**kwargs: Any,
):
super().__init__(isolation_level=isolation_level, **kwargs)
Expand Down

0 comments on commit 3af1371

Please sign in to comment.