From 694c8cdf6269305c84ba8e49dea11900bd0d5b4d Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 26 Sep 2020 12:38:22 -0700 Subject: [PATCH] clean up linting issues --- features/environment.py | 1 - features/steps/core.py | 8 +++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/features/environment.py b/features/environment.py index f3a0e13b..71ed8969 100644 --- a/features/environment.py +++ b/features/environment.py @@ -84,4 +84,3 @@ def after_scenario(context, scenario): clean_all_working_dirs() else: clean_all_working_dirs() - diff --git a/features/steps/core.py b/features/steps/core.py index 756f260b..43a3bad7 100644 --- a/features/steps/core.py +++ b/features/steps/core.py @@ -368,11 +368,13 @@ def flush_stderr(context): @then("we flush all the output") -def flush_stderr(context): - context.execute_steps(''' +def flush_all_output(context): + context.execute_steps( + """ Then we flush the output Then we flush the error output - ''') + """ + ) @then("the output should be")