mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Style fixes
This commit is contained in:
parent
f8b781a6d4
commit
2d5a230fa4
2 changed files with 2 additions and 5 deletions
|
|
@ -2,12 +2,9 @@
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
import vdirsyncer.exceptions as exceptions
|
from vdirsyncer.metasync import MetaSyncConflict, metasync
|
||||||
from vdirsyncer.storage.base import Item
|
|
||||||
from vdirsyncer.storage.memory import MemoryStorage
|
from vdirsyncer.storage.memory import MemoryStorage
|
||||||
from vdirsyncer.metasync import metasync, MetaSyncConflict
|
|
||||||
|
|
||||||
from . import assert_item_equals, blow_up, normalize_item
|
|
||||||
|
|
||||||
def test_irrelevant_status():
|
def test_irrelevant_status():
|
||||||
a = MemoryStorage()
|
a = MemoryStorage()
|
||||||
|
|
@ -17,6 +14,7 @@ def test_irrelevant_status():
|
||||||
metasync(a, b, status, keys=())
|
metasync(a, b, status, keys=())
|
||||||
assert not status
|
assert not status
|
||||||
|
|
||||||
|
|
||||||
def test_basic():
|
def test_basic():
|
||||||
a = MemoryStorage()
|
a = MemoryStorage()
|
||||||
b = MemoryStorage()
|
b = MemoryStorage()
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import platform
|
|
||||||
import stat
|
import stat
|
||||||
|
|
||||||
import click
|
import click
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue