Skip to content

Commit

Permalink
fix(tests): ignore yield from syntax in linter
Browse files Browse the repository at this point in the history
  • Loading branch information
h2non committed Jan 2, 2017
1 parent 16c5d94 commit f578f5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/async_retrier_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ def test_async_retrier_istimeout():


@python34
def test_async_retrier_context_manager(MagicMock, coro):
def test_async_retrier_context_manager(MagicMock, coro): # flake8: noqa
on_retry = MagicMock()
retrier = AsyncRetrier(timeout=.25, on_retry=on_retry,
backoff=ConstantBackoff(interval=.1, retries=5))
Expand Down

0 comments on commit f578f5d

Please sign in to comment.