Browse Source

Remove two redundant empty lines.

PEP8 suggests to use two empty lines to separate functions, not three.
pull/1225/head
Petr Zemek 10 years ago
parent
commit
e41bf1e181
  1. 1
      tests/conftest.py
  2. 1
      tests/test_signals.py

1
tests/conftest.py

@ -33,7 +33,6 @@ def leak_detector(request):
request.addfinalizer(ensure_clean_request_context)
@pytest.fixture(params=(True, False))
def limit_loader(request, monkeypatch):
"""Patch pkgutil.get_loader to give loader without get_filename or archive.

1
tests/test_signals.py

@ -19,7 +19,6 @@ except ImportError:
import flask
pytestmark = pytest.mark.skipif(
blinker is None,
reason='Signals require the blinker library.'

Loading…
Cancel
Save