Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
killian-scalian committed Dec 17, 2024
1 parent 4c58d93 commit 5d38682
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/andromede/input_converter/src/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# This file is part of the Antares project.
from pathlib import Path
from antares.model.study import read_study_local, Study
from antares.model.study import Study
from typing import Optional
from pydantic import BaseModel
from andromede.study.parsing import InputComponents
Expand All @@ -30,8 +30,6 @@ def __init__(self, study_path: Optional[Path]):
self.study_path = resolve_path(study_path) if study_path else None
self.study: Study = None

def load_study(self) -> Study:
return read_study_local(self.study_path)

def convert_study_to_input_components(self) -> BaseModel:
areas = self.study.read_areas()
Expand Down

0 comments on commit 5d38682

Please sign in to comment.