From 0fabe2c0b05ba162eed1f83c2609b696da438192 Mon Sep 17 00:00:00 2001 From: WXTIM <26465611+wxtim@users.noreply.github.com> Date: Wed, 20 Dec 2023 11:06:28 +0000 Subject: [PATCH] fix-flake8 --- cylc/flow/scripts/lint.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cylc/flow/scripts/lint.py b/cylc/flow/scripts/lint.py index 046cdf99c94..6782fbe6562 100755 --- a/cylc/flow/scripts/lint.py +++ b/cylc/flow/scripts/lint.py @@ -686,7 +686,8 @@ def list_wrapper(line: str, check: Callable) -> Optional[Dict[str, str]]: 'https://cylc.github.io/cylc-doc/stable/html/plugins/' 'cylc-rose.html#special-variables' ), - FUNCTION: functools.partial(list_wrapper, check=CHECK_FOR_OLD_VARS.findall), + FUNCTION: functools.partial( + list_wrapper, check=CHECK_FOR_OLD_VARS.findall), }, } RULESETS = ['728', 'style', 'all']