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]