Skip to content

Commit 8e26ce2

Browse files
committed
Fix JSONExtract output_field arg
1 parent 44fe439 commit 8e26ce2

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
@@ -246,7 +246,7 @@ def __init__(
246246
self,
247247
expression: ExpressionArgument,
248248
*paths: ExpressionArgument,
249-
output_field: type[DjangoField] | None = None,
249+
output_field: DjangoField | None = None,
250250
) -> None:
251251
exprs = [expression]
252252
for path in paths:

0 commit comments

Comments
 (0)