Added initializing for convert.py

This commit is contained in:
andrei 2022-06-23 13:49:58 +03:00
parent e65a773bae
commit 88c58a1dbf
2 changed files with 2 additions and 2 deletions

View File

@ -12,5 +12,5 @@ configuration or the ``PLANETMINT_DATABASE_BACKEND`` environment variable.
""" """
# Include the backend interfaces # Include the backend interfaces
from planetmint.backend import schema, query # noqa from planetmint.backend import schema, query, convert # noqa
from planetmint.backend.connection import connect, Connection from planetmint.backend.connection import connect, Connection

View File

@ -1,5 +1,5 @@
# Register the single dispatched modules on import. # Register the single dispatched modules on import.
from planetmint.backend.tarantool import query, connection, schema # noqa from planetmint.backend.tarantool import query, connection, schema, convert # noqa
# MongoDBConnection should always be accessed via # MongoDBConnection should always be accessed via
# ``planetmint.backend.connect()``. # ``planetmint.backend.connect()``.