Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
killian-scalian committed Dec 24, 2024
1 parent 0a7dc04 commit ace8350
Showing 1 changed file with 37 additions and 1 deletion.
38 changes: 37 additions & 1 deletion src/andromede/input_converter/src/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,41 @@ def convert_renewable_to_component_list(
return components


def convert_hydro_to_component_list(areas: Area) -> list[InputComponent]:
def convert_hydro_to_component_list(area: Area) -> list[InputComponent]:
raise NotImplementedError


def convert_thermals_to_component_list(
areas: list[Area], root_path: Path
) -> list[InputComponent]:
raise NotImplementedError


def convert_load_matrix_to_component_list(
areas: list[Area], root_path: Path
) -> list[InputComponent]:
raise NotImplementedError


def convert_misc_gen_to_component_list(
areas: list[Area], root_path: Path
) -> list[InputComponent]:
raise NotImplementedError


def convert_reserves_matrix_to_component_list(
areas: list[Area], root_path: Path
) -> list[InputComponent]:
raise NotImplementedError


def convert_wind_matrix_to_component_list(
areas: list[Area], root_path: Path
) -> list[InputComponent]:
raise NotImplementedError


def convert_solar_matrix_to_component_list(
areas: list[Area], root_path: Path
) -> list[InputComponent]:
raise NotImplementedError

0 comments on commit ace8350

Please sign in to comment.