Skip to content

Commit

Permalink
Fix flake8 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
BoboTiG committed Jun 25, 2020
1 parent e249acf commit dee8e5f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
SRC_DIR_PATH = os.path.join(TOP_DIR_PATH, 'src') # noqa
sys.path.insert(0, SRC_DIR_PATH) # noqa

import watchdog.version
import watchdog.version # noqa

PROJECT_NAME = 'watchdog'
AUTHOR_NAME = 'Yesudeep Mangalapilly and contributors'
Expand Down
8 changes: 4 additions & 4 deletions tests/test_watchmedo.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@
# in README.rst
yaml = pytest.importorskip('yaml') # noqa

import os
import os # noqa

from watchdog import watchmedo
from yaml.constructor import ConstructorError
from yaml.scanner import ScannerError
from watchdog import watchmedo # noqa
from yaml.constructor import ConstructorError # noqa
from yaml.scanner import ScannerError # noqa


def test_load_config_valid(tmpdir):
Expand Down

0 comments on commit dee8e5f

Please sign in to comment.