We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f91d19a commit 2195667Copy full SHA for 2195667
src/django_mysql/models/aggregates.py
@@ -3,7 +3,7 @@
3
from typing import Any
4
5
from django.db.backends.base.base import BaseDatabaseWrapper
6
-from django.db.models import Aggregate, CharField, Expression
+from django.db.models import Aggregate, CharField
7
from django.db.models.sql.compiler import SQLCompiler
8
9
@@ -27,7 +27,7 @@ class GroupConcat(Aggregate):
27
28
def __init__(
29
self,
30
- expression: Expression,
+ expression: Any,
31
distinct: bool = False,
32
separator: str | None = None,
33
ordering: str | None = None,
0 commit comments