Skip to content

Commit 196c24a

Browse files
committed
fix linters
Signed-off-by: Ivan Santiago Paunovic <[email protected]>
1 parent c7ba28e commit 196c24a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

launch_pytest/launch_pytest/plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
except ImportError: # Pytest 4.1.0 removes the transfer_marker api (#104)
4141

4242
def transfer_markers(*args, **kwargs): # noqa
43-
"""Noop when over pytest 4.1.0"""
43+
# Noop when over pytest 4.1.0
4444
pass
4545

4646

@@ -221,7 +221,7 @@ def pytest_pycollect_makeitem(collector, name, obj):
221221
# return an item with a warning that's going to be skipped
222222
msg = (
223223
'"fixture" keyword argument is required in a pytest.mark.launch() '
224-
f'decorator')
224+
'decorator')
225225
item.warn(LaunchTestWarning(msg))
226226
item.add_marker(pytest.mark.skip(msg))
227227
return [item]

0 commit comments

Comments
 (0)