aboutsummaryrefslogtreecommitdiffstats
path: root/src/onaptests/steps/base.py
diff options
context:
space:
mode:
authorMichal Jagiello <michal.jagiello@t-mobile.pl>2023-08-08 08:58:06 +0000
committerMichal Jagiello <michal.jagiello@t-mobile.pl>2023-08-08 08:58:06 +0000
commit190b7b8ca15a545ec83424bc2367dab954780f32 (patch)
treeb6b55ea1a6f2ea3351383bedc0444930f366d872 /src/onaptests/steps/base.py
parent9ae6448df2adb57822c81c15961464e10d39bf8d (diff)
Fix pylama errors
Some new code was not checked by pylama and we have new errors Issue-ID: TEST-404 Signed-off-by: Michal Jagiello <michal.jagiello@t-mobile.pl> Change-Id: I5e92f0bbbafedc8852599eb3fb3423509c3e0d12
Diffstat (limited to 'src/onaptests/steps/base.py')
-rw-r--r--src/onaptests/steps/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/onaptests/steps/base.py b/src/onaptests/steps/base.py
index 8737ac1..06064b4 100644
--- a/src/onaptests/steps/base.py
+++ b/src/onaptests/steps/base.py
@@ -25,7 +25,7 @@ IF_VALIDATION = "PYTHON_SDK_TESTS_VALIDATION"
class StoreStateHandler(ABC):
@classmethod
- def store_state(cls, fun=None, *, cleanup=False):
+ def store_state(cls, fun=None, *, cleanup=False): # noqa
if fun is None:
return functools.partial(cls.store_state, cleanup=cleanup)