mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Stylefix
This commit is contained in:
parent
826a64226e
commit
3cf33e5efe
2 changed files with 0 additions and 2 deletions
|
|
@ -502,7 +502,6 @@ class SyncMachine(RuleBasedStateMachine):
|
||||||
# If one storage is read-only, double-sync because changes don't
|
# If one storage is read-only, double-sync because changes don't
|
||||||
# get reverted immediately.
|
# get reverted immediately.
|
||||||
for _ in range(2 if a.read_only or b.read_only else 1):
|
for _ in range(2 if a.read_only or b.read_only else 1):
|
||||||
old_status = deepcopy(status)
|
|
||||||
sync(a, b, status,
|
sync(a, b, status,
|
||||||
force_delete=force_delete,
|
force_delete=force_delete,
|
||||||
conflict_resolution=conflict_resolution,
|
conflict_resolution=conflict_resolution,
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,6 @@ Yang. http://blog.ezyang.com/2012/08/how-offlineimap-works/
|
||||||
'''
|
'''
|
||||||
import itertools
|
import itertools
|
||||||
import logging
|
import logging
|
||||||
import sys
|
|
||||||
|
|
||||||
from . import exceptions
|
from . import exceptions
|
||||||
from .utils import uniq
|
from .utils import uniq
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue