summaryrefslogtreecommitdiff
path: root/common/src/leap/soledad/common/l2db/remote/http_target.py
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/leap/soledad/common/l2db/remote/http_target.py')
-rw-r--r--common/src/leap/soledad/common/l2db/remote/http_target.py15
1 files changed, 4 insertions, 11 deletions
diff --git a/common/src/leap/soledad/common/l2db/remote/http_target.py b/common/src/leap/soledad/common/l2db/remote/http_target.py
index 1028963e..598170e4 100644
--- a/common/src/leap/soledad/common/l2db/remote/http_target.py
+++ b/common/src/leap/soledad/common/l2db/remote/http_target.py
@@ -21,17 +21,10 @@ try:
except ImportError:
import json # noqa
-from u1db import (
- Document,
- SyncTarget,
- )
-from u1db.errors import (
- BrokenSyncStream,
- )
-from u1db.remote import (
- http_client,
- utils,
- )
+from leap.soledad.common.l2db import Document, SyncTarget
+from leap.soledad.common.l2db.errors import BrokenSyncStream
+from leap.soledad.common.l2db.remote import (
+ http_client, utils)
class HTTPSyncTarget(http_client.HTTPClientBase, SyncTarget):