Skip to content

Commit d6e1425

Browse files
committed
Fix import
1 parent 5bb54db commit d6e1425

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

django_mongodb_backend/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# Check Django compatibility before other imports which may fail if the
44
# wrong version of Django is installed.
5-
from .utils import check_django_compatability, parse_uri
5+
from .utils import check_django_compatability, get_auto_encryption_opts, parse_uri
66

77
check_django_compatability()
88

@@ -15,7 +15,7 @@
1515
from .lookups import register_lookups # noqa: E402
1616
from .query import register_nodes # noqa: E402
1717

18-
__all__ = ["parse_uri"]
18+
__all__ = ["get_auto_encryption_opts", "parse_uri"]
1919

2020
register_aggregates()
2121
register_checks()

0 commit comments

Comments
 (0)