mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-30 09:45:53 +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 vdirsyncer.exceptions as exceptions
|
||||
from vdirsyncer.storage.base import Item
|
||||
from vdirsyncer.metasync import MetaSyncConflict, metasync
|
||||
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():
|
||||
a = MemoryStorage()
|
||||
|
|
@ -17,6 +14,7 @@ def test_irrelevant_status():
|
|||
metasync(a, b, status, keys=())
|
||||
assert not status
|
||||
|
||||
|
||||
def test_basic():
|
||||
a = MemoryStorage()
|
||||
b = MemoryStorage()
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
import os
|
||||
import platform
|
||||
import stat
|
||||
|
||||
import click
|
||||
|
|
|
|||
Loading…
Reference in a new issue