From b767750d5aff2c9175a0bcc247c2b9c0d8ca08be Mon Sep 17 00:00:00 2001 From: Victor Shyba Date: Mon, 17 Aug 2015 15:07:21 -0300 Subject: [refactor] remove unused parameter --- common/src/leap/soledad/common/couch.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'common/src/leap') diff --git a/common/src/leap/soledad/common/couch.py b/common/src/leap/soledad/common/couch.py index 96e00fa2..c003b14e 100644 --- a/common/src/leap/soledad/common/couch.py +++ b/common/src/leap/soledad/common/couch.py @@ -87,8 +87,7 @@ class CouchDocument(SoledadDocument): atomic and consistent update of the database. """ - def __init__(self, doc_id=None, rev=None, json='{}', has_conflicts=False, - syncable=True): + def __init__(self, doc_id=None, rev=None, json='{}', has_conflicts=False): """ Container for handling a document that is stored in couch backend. @@ -100,8 +99,6 @@ class CouchDocument(SoledadDocument): :type json: str :param has_conflicts: Boolean indicating if this document has conflicts :type has_conflicts: bool - :param syncable: Should this document be synced with remote replicas? - :type syncable: bool """ SoledadDocument.__init__(self, doc_id, rev, json, has_conflicts) self.couch_rev = None -- cgit v1.2.3