Skip to content

Commit 2d3185d

Browse files
🎨 [pre-commit.ci] Auto format from pre-commit.com hooks
1 parent 1bd5dee commit 2d3185d

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

sqlmodel/sql/sqltypes.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from enum import IntEnum as _IntEnum
2-
from typing import Any, Optional, TypeVar, Type, cast, Any
2+
from typing import Any, Optional, Type, TypeVar, cast
33

44
from sqlalchemy import types
55
from sqlalchemy.engine.interfaces import Dialect
@@ -60,7 +60,6 @@ def process_result_value( # type: ignore[override]
6060
value: Optional[int],
6161
dialect: Dialect,
6262
) -> Optional[_TIntEnum]:
63-
6463
if value is None:
6564
return None
6665

@@ -72,7 +71,6 @@ def process_bind_param(
7271
value: Optional[_TIntEnum],
7372
dialect: Dialect,
7473
) -> Optional[int]:
75-
7674
if value is None:
7775
return None
7876

0 commit comments

Comments
 (0)