Skip to content

Commit e3c7f10

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent d456cd7 commit e3c7f10

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

ardupilot_methodic_configurator/data_model_par_dict.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -607,13 +607,7 @@ def _filter_by_id(self, _doc_dict: dict) -> "ParDict":
607607
A new ParDict containing only ID parameters.
608608
609609
"""
610-
return ParDict(
611-
{
612-
param_name: param_info
613-
for param_name, param_info in self.items()
614-
if param_name in ID_PARAMETER_NAMES
615-
}
616-
)
610+
return ParDict({param_name: param_info for param_name, param_info in self.items() if param_name in ID_PARAMETER_NAMES})
617611

618612
def categorize_by_documentation(
619613
self,

0 commit comments

Comments
 (0)