Skip to content

Commit 1310bc6

Browse files
authored
Update main.py
remove type ignore flag
1 parent 363ddaf commit 1310bc6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqlmodel/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ def Field(
383383
nullable: Union[bool, UndefinedType] = Undefined,
384384
index: Union[bool, UndefinedType] = Undefined,
385385
sa_type: Union[Type[Any], UndefinedType] = Undefined,
386-
sa_column: Union[Column[Any], UndefinedType] = Undefined, # type: ignore
386+
sa_column: Union[Column[Any], UndefinedType] = Undefined,
387387
sa_column_args: Union[Sequence[Any], UndefinedType] = Undefined,
388388
sa_column_kwargs: Union[Mapping[str, Any], UndefinedType] = Undefined,
389389
schema_extra: Optional[Dict[str, Any]] = None,

0 commit comments

Comments
 (0)