Skip to content

Commit 11950d9

Browse files
committed
type fix
1 parent 48447d6 commit 11950d9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sqlmodel/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ class FieldInfoMetadata:
338338
ondelete: Union[OnDeleteType, UndefinedType] = Undefined
339339
unique: Union[bool, UndefinedType] = Undefined
340340
index: Union[bool, UndefinedType] = Undefined
341-
sa_type: Union[Type[Any], UndefinedType] = Undefined
341+
sa_type: Union[type[Any], UndefinedType] = Undefined
342342
sa_column: Union[Column[Any], UndefinedType] = Undefined
343343
sa_column_args: Union[Sequence[Any], UndefinedType] = Undefined
344344
sa_column_kwargs: Union[Mapping[str, Any], UndefinedType] = Undefined

0 commit comments

Comments
 (0)