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
41173acdf3
commit
8425984ebb
2 changed files with 1 additions and 11 deletions
|
|
@ -1,12 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
import os
|
|
||||||
import platform
|
import platform
|
||||||
import stat
|
|
||||||
|
|
||||||
import click
|
|
||||||
from click.testing import CliRunner
|
|
||||||
|
|
||||||
import click_log
|
import click_log
|
||||||
|
|
||||||
|
|
@ -15,8 +10,6 @@ import pytest
|
||||||
import requests
|
import requests
|
||||||
|
|
||||||
from vdirsyncer import utils
|
from vdirsyncer import utils
|
||||||
from vdirsyncer.cli import pass_context
|
|
||||||
from vdirsyncer.cli.config import Config
|
|
||||||
|
|
||||||
# These modules might be uninitialized and unavailable if not explicitly
|
# These modules might be uninitialized and unavailable if not explicitly
|
||||||
# imported
|
# imported
|
||||||
|
|
@ -24,9 +17,6 @@ import vdirsyncer.utils.compat # noqa
|
||||||
import vdirsyncer.utils.http # noqa
|
import vdirsyncer.utils.http # noqa
|
||||||
|
|
||||||
|
|
||||||
from .. import blow_up
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.fixture(autouse=True)
|
@pytest.fixture(autouse=True)
|
||||||
def no_debug_output(request):
|
def no_debug_output(request):
|
||||||
logger = click_log.basic_config('vdirsyncer')
|
logger = click_log.basic_config('vdirsyncer')
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,7 @@ from itertools import chain
|
||||||
from . import CliError, cli_logger
|
from . import CliError, cli_logger
|
||||||
from .fetchparams import expand_fetch_params
|
from .fetchparams import expand_fetch_params
|
||||||
from .. import PROJECT_HOME
|
from .. import PROJECT_HOME
|
||||||
from ..utils import expand_path, cached_property
|
from ..utils import cached_property, expand_path
|
||||||
from ..utils.compat import text_type
|
from ..utils.compat import text_type
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue