diff options
author | drebs <drebs@leap.se> | 2017-05-04 16:17:11 +0200 |
---|---|---|
committer | drebs <drebs@leap.se> | 2017-05-04 16:17:11 +0200 |
commit | ac0e01ccf4a7d372cddea03ae1982a01e28b9cd0 (patch) | |
tree | 2a8e2ff6e582c791688bd31ef308b95fc0b8dc55 /client/src/leap/soledad | |
parent | ad065fc8c9204e6d63b7fb69b1d9cf469812237f (diff) |
[bug] remove enum dependency
Diffstat (limited to 'client/src/leap/soledad')
-rw-r--r-- | client/src/leap/soledad/client/_document.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/client/src/leap/soledad/client/_document.py b/client/src/leap/soledad/client/_document.py index 38026f20..9c8577cb 100644 --- a/client/src/leap/soledad/client/_document.py +++ b/client/src/leap/soledad/client/_document.py @@ -19,7 +19,6 @@ Public interfaces for adding extra client features to the generic SoledadDocument. """ -import enum import weakref import uuid @@ -147,7 +146,7 @@ class BlobDoc(object): self.blob_id = blob_id -class AttachmentStates(enum.IntEnum): +class AttachmentStates(object): NONE = 0 LOCAL = 1 REMOTE = 2 |