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 5bb54db commit d6e1425Copy full SHA for d6e1425
django_mongodb_backend/__init__.py
@@ -2,7 +2,7 @@
2
3
# Check Django compatibility before other imports which may fail if the
4
# wrong version of Django is installed.
5
-from .utils import check_django_compatability, parse_uri
+from .utils import check_django_compatability, get_auto_encryption_opts, parse_uri
6
7
check_django_compatability()
8
@@ -15,7 +15,7 @@
15
from .lookups import register_lookups # noqa: E402
16
from .query import register_nodes # noqa: E402
17
18
-__all__ = ["parse_uri"]
+__all__ = ["get_auto_encryption_opts", "parse_uri"]
19
20
register_aggregates()
21
register_checks()
0 commit comments