Skip to content

Commit 8e83774

Browse files
committed
Fix linting complaints
1 parent 563efb1 commit 8e83774

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

testing/test_basic.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
import pytest
55

6-
import pytest_twisted
7-
86

97
ASYNC_AWAIT = sys.version_info >= (3, 5)
108

@@ -37,7 +35,9 @@ def format_run_result_output_for_assert(run_result):
3735
def skip_if_reactor_not(request, expected_reactor):
3836
actual_reactor = request.config.getoption("reactor", "default")
3937
if actual_reactor != expected_reactor:
40-
pytest.skip("reactor is {} not {}".format(actual_reactor, expected_reactor))
38+
pytest.skip(
39+
"reactor is {} not {}".format(actual_reactor, expected_reactor),
40+
)
4141

4242

4343
def skip_if_no_async_await():

0 commit comments

Comments
 (0)