diff options
| -rw-r--r-- | changes/bug_all_backends | 3 | ||||
| -rw-r--r-- | src/leap/soledad/backends/__init__.py | 15 | 
2 files changed, 3 insertions, 15 deletions
| diff --git a/changes/bug_all_backends b/changes/bug_all_backends new file mode 100644 index 00000000..bfb7253d --- /dev/null +++ b/changes/bug_all_backends @@ -0,0 +1,3 @@ +  o Do not list the backends in the __init__'s __all__ to allow not +    supporting couch on the client side until the code is diveded into +    client and server.
\ No newline at end of file diff --git a/src/leap/soledad/backends/__init__.py b/src/leap/soledad/backends/__init__.py index 720a8118..737c08e6 100644 --- a/src/leap/soledad/backends/__init__.py +++ b/src/leap/soledad/backends/__init__.py @@ -19,18 +19,3 @@  """  Backends that extend U1DB functionality.  """ - -from leap.soledad.backends import ( -    objectstore, -    couch, -    sqlcipher, -    leap_backend, -) - - -__all__ = [ -    'objectstore', -    'couch', -    'sqlcipher', -    'leap_backend', -] | 
