Skip to content

Commit

Permalink
fix unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
zhPavel committed Feb 16, 2024
1 parent cee8efe commit 5004ef4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/adaptix/_internal/model_tools/introspection/sqlalchemy.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

try:
import sqlalchemy
from sqlalchemy import Column, ColumnCollection, FromClause
from sqlalchemy import Column, ColumnCollection
from sqlalchemy.exc import NoInspectionAvailable
from sqlalchemy.orm import Mapped, Mapper, RelationshipProperty
from sqlalchemy.sql.schema import (
Expand Down Expand Up @@ -111,7 +111,7 @@ def _is_input_required_for_column(column: 'ColumnElement', autoincrement_column:
)


def _get_autoincrement_column(table: 'sqlalchemy.Table'):
def _get_autoincrement_column(table: 'Table'):
try:
return table.autoincrement_column
except AttributeError:
Expand Down

0 comments on commit 5004ef4

Please sign in to comment.