From 652936f47fd9167fbfd858fc33c3ed431a49f230 Mon Sep 17 00:00:00 2001 From: ST John Date: Thu, 30 Nov 2017 10:29:05 +0000 Subject: [PATCH] make linter happier --- testing/python/metafunc.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/testing/python/metafunc.py b/testing/python/metafunc.py index 9ef95dd6b..0ed9f56bf 100644 --- a/testing/python/metafunc.py +++ b/testing/python/metafunc.py @@ -240,8 +240,13 @@ class TestMetafunc(object): values that are classes or functions: their __name__. """ from _pytest.python import _idval - class TestClass: pass - def test_function(): pass + + class TestClass: + pass + + def test_function(): + pass + values = [ (TestClass, "TestClass"), (test_function, "test_function"),