Skip to content

Commit f700246

Browse files
committed
more flake8 fixes
1 parent 79ba8a5 commit f700246

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/pytest_cases/common_others.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ def get_class_that_defined_method(meth):
427427
)
428428
if host is None:
429429
raise ValueError("__qualname__ leads to `None`, this is strange and not PEP3155 compliant, please "
430-
"report")
430+
"report")
431431

432432
if isinstance(host, type):
433433
return host

src/pytest_cases/common_pytest_lazy_values.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,7 @@ def force_getitem(self, item, request):
413413
class LazyValue(_LazyValue):
414414
pass
415415

416+
416417
class LazyTupleItem(_LazyTupleItem):
417418
pass
418419

src/pytest_cases/fixture_parametrize_plus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1024,7 +1024,7 @@ def replace_paramfixture_with_values(kwargs): # noqa
10241024
elif iscoroutinefunction(test_func):
10251025
from .pep492 import _parametrize_plus_decorate_coroutine_pep492
10261026
wrapped_test_func = _parametrize_plus_decorate_coroutine_pep492(test_func, new_sig, fixture_union_name,
1027-
replace_paramfixture_with_values)
1027+
replace_paramfixture_with_values)
10281028
elif isgeneratorfunction(test_func):
10291029
# generator function (with a yield statement)
10301030
from .pep380 import _parametrize_plus_decorate_generator_pep380

0 commit comments

Comments
 (0)