From 457375dbe65bea6416a250754911d77d052f13a5 Mon Sep 17 00:00:00 2001 From: Suhas Date: Sat, 6 Feb 2021 18:55:44 -0500 Subject: [PATCH] Revert "make format" This reverts commit ddb62b7cb34311ee735c9a90d60dc5cc20da0607. --- features/steps/core.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/features/steps/core.py b/features/steps/core.py index 97128094..1c559619 100644 --- a/features/steps/core.py +++ b/features/steps/core.py @@ -388,7 +388,6 @@ def all_input_was_used(context): for temp in context.iter_text: assert "" == temp, "Not all inputs were consumed" - @when('we run "{command}"') @when('we run "{command}" and pipe') @when('we run "{command}" and pipe "{text}"') @@ -398,8 +397,8 @@ def run(context, command, text=""): if "config_path" in context and context.config_path is not None: with open(context.config_path) as f: context.jrnl_config = yaml.load(f, Loader=yaml.FullLoader) - else: - context.jrnl_config = None + else: + context.jrnl_config = None if "cache_dir" in context and context.cache_dir is not None: cache_dir = os.path.join("features", "cache", context.cache_dir)