Skip to content

Commit

Permalink
fix: Remove obvious error
Browse files Browse the repository at this point in the history
  • Loading branch information
ewuerger committed Dec 13, 2024
1 parent fac3949 commit f9a300b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion capella2polarion/converters/converter_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def _filter_converter_config(self) -> dict[str, dict[str, t.Any]]:
assert isinstance(params, dict)
params = _filter_context_diagram_config(params)

if name in ("add_attributes"):
if name in ("add_attributes",):
assert isinstance(params, list) # type: ignore[unreachable]
params = {"attributes": params} # type: ignore[unreachable]

Expand Down

0 comments on commit f9a300b

Please sign in to comment.