Skip to content

Commit

Permalink
one last fix
Browse files Browse the repository at this point in the history
  • Loading branch information
killian-scalian committed Jan 15, 2025
1 parent 38dcba3 commit 3664800
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/andromede/input_converter/src/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,8 @@ def convert_study_to_input_study(self) -> InputStudy:

for method in conversion_methods:
components, connections = method(areas)
list_components.extend(components or [])
list_connections.extend(connections or [])
list_components.extend(components)
list_connections.extend(connections)

return InputStudy(
nodes=area_components,
Expand Down

0 comments on commit 3664800

Please sign in to comment.