From cced71c828e31f3e0e05c28fa8e4afc35bdcd631 Mon Sep 17 00:00:00 2001 From: Justin Ross Date: Mon, 11 Nov 2024 11:36:57 -0500 Subject: [PATCH] WIP --- python/commands.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/python/commands.py b/python/commands.py index afd53fe..5ae37f4 100644 --- a/python/commands.py +++ b/python/commands.py @@ -390,8 +390,7 @@ def merge_option_data(self): if fnmatch.fnmatchcase(key, pattern): included_keys.remove(key) - included_options = {model_options[x]["name"]: model_options[x] for x in included_keys - if x not in model_options} + included_options = {model_options[x]["name"]: model_options[x] for x in included_keys} specific_options = {x["name"]: x for x in self.data.get("options", [])} included_names = [x for x in included_options if x not in specific_options]