From 292ffb246123c121571ddc8fd6678f4947443f3c Mon Sep 17 00:00:00 2001 From: Romazes Date: Sat, 21 Sep 2024 02:10:53 +0300 Subject: [PATCH] refactor: change spacing --- lean/models/json_module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lean/models/json_module.py b/lean/models/json_module.py index a9160b29..e8517774 100644 --- a/lean/models/json_module.py +++ b/lean/models/json_module.py @@ -89,7 +89,7 @@ def _check_if_config_passes_filters(self, config: Configuration, all_for_platfor if not target_value: return False elif isinstance(target_value, dict): - return all(condition.check(value) for value in target_value.values()) + return all(condition.check(value) for value in target_value.values()) elif not condition.check(target_value): return False return True