Skip to content

Commit e5bccb2

Browse files
committed
Fix type for GroupConcat arg 1
1 parent 10f048c commit e5bccb2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/django_mysql/models/aggregates.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from django.db.backends.base.base import BaseDatabaseWrapper
66
from django.db.models import Aggregate
77
from django.db.models import CharField
8-
from django.db.models import Expression
98
from django.db.models.sql.compiler import SQLCompiler
109

1110

@@ -29,7 +28,7 @@ class GroupConcat(Aggregate):
2928

3029
def __init__(
3130
self,
32-
expression: Expression,
31+
expression: Any,
3332
distinct: bool = False,
3433
separator: str | None = None,
3534
ordering: str | None = None,

0 commit comments

Comments
 (0)