Skip to content

Commit 56ab11b

Browse files
committed
Fix JSONExtract output_field arg
1 parent 10ccadd commit 56ab11b

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
@@ -249,7 +249,7 @@ def __init__(
249249
self,
250250
expression: ExpressionArgument,
251251
*paths: ExpressionArgument,
252-
output_field: type[DjangoField] | None = None,
252+
output_field: DjangoField | None = None,
253253
) -> None:
254254
exprs = [expression]
255255
for path in paths:

0 commit comments

Comments
 (0)