Skip to content

Commit 586531a

Browse files
committed
Fix JSONExtract output_field arg
1 parent a885a6b commit 586531a

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
@@ -182,7 +182,7 @@ def __init__(
182182
self,
183183
expression: ExpressionArgument,
184184
*paths: ExpressionArgument,
185-
output_field: type[DjangoField] | None = None,
185+
output_field: DjangoField | None = None,
186186
) -> None:
187187
exprs = [expression]
188188
for path in paths:

0 commit comments

Comments
 (0)