Skip to content

Commit fec8d94

Browse files
committed
Fix JSONExtract output_field arg
1 parent 02b0c61 commit fec8d94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/django_mysql/models/functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def __init__(
184184
self,
185185
expression: ExpressionArgument,
186186
*paths: ExpressionArgument,
187-
output_field: type[DjangoField] | None = None,
187+
output_field: DjangoField | None = None,
188188
) -> None:
189189
exprs = [expression]
190190
for path in paths:

0 commit comments

Comments
 (0)