Skip to content

Commit 556f6c7

Browse files
timgrahamWaVEV
authored andcommitted
Create django_mongodb_backend.expressions package
1 parent 31a729c commit 556f6c7

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

django_mongodb_backend/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from .aggregates import register_aggregates # noqa: E402
1010
from .checks import register_checks # noqa: E402
11-
from .expressions import register_expressions # noqa: E402
11+
from .expressions.builtins import register_expressions # noqa: E402
1212
from .fields import register_fields # noqa: E402
1313
from .functions import register_functions # noqa: E402
1414
from .indexes import register_indexes # noqa: E402

django_mongodb_backend/expressions/__init__.py

Whitespace-only changes.

django_mongodb_backend/expressions.py renamed to django_mongodb_backend/expressions/builtins.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
)
2727
from django.db.models.sql import Query
2828

29-
from .query_utils import process_lhs
29+
from ..query_utils import process_lhs
3030

3131

3232
def case(self, compiler, connection):

0 commit comments

Comments
 (0)