Skip to content

Commit

Permalink
Merge pull request #71 from bird-house/fix-pep8-config
Browse files Browse the repository at this point in the history
pep8
  • Loading branch information
cehbrecht authored Sep 11, 2019
2 parents 6625402 + e97d940 commit cb009d5
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 6 deletions.
1 change: 0 additions & 1 deletion {{cookiecutter.project_repo_name}}/setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ markers =
slow: mark test to be slow

[flake8]
ignore = F401,E402
max-line-length = 120
exclude =
.git,
Expand Down
1 change: 0 additions & 1 deletion {{cookiecutter.project_repo_name}}/tests/test_wps_caps.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from pywps import Service
from pywps.tests import assert_response_success

from .common import client_for
from {{ cookiecutter.project_slug }}.processes import processes
Expand Down
2 changes: 0 additions & 2 deletions {{cookiecutter.project_repo_name}}/tests/test_wps_hello.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import pytest

from pywps import Service
from pywps.tests import client_for, assert_response_success

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

"""Top-level package for {{ cookiecutter.project_name }}."""

from .__version__ import __author__, __email__, __version__
from .__version__ import __author__, __email__, __version__ # noqa: F401

from .wsgi import application
from .wsgi import application # noqa: F401

0 comments on commit cb009d5

Please sign in to comment.