Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
killian-scalian committed Jan 15, 2025
1 parent 0233101 commit dee638a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/andromede/input_converter/src/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,6 @@ def _convert_solar_to_component_list(
if series_path.exists():
if self._check_dataframe_validity(area.get_solar_matrix()):
components.append(
[
InputComponent(
id=area.id,
model="solar",
Expand All @@ -259,7 +258,6 @@ def _convert_solar_to_component_list(
)
],
)
]
)
connections.append(
InputPortConnections(
Expand All @@ -284,7 +282,6 @@ def _convert_load_to_component_list(
if series_path.exists():
if self._check_dataframe_validity(area.get_load_matrix()):
components.append(
[
InputComponent(
id=area.id,
model="load",
Expand All @@ -296,7 +293,7 @@ def _convert_load_to_component_list(
)
],
)
]

)
connections.append(
InputPortConnections(
Expand Down

0 comments on commit dee638a

Please sign in to comment.