Skip to content

Commit

Permalink
removing unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mehdiwahada committed Nov 8, 2024
1 parent 132671b commit e0d2947
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/antares/service/local_services/study_local.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 typing import Any, Optional
from typing import Any, Optional, List

from antares.config.local_configuration import LocalConfiguration
from antares.model.binding_constraint import BindingConstraint
Expand Down Expand Up @@ -40,3 +40,6 @@ def delete_binding_constraint(self, constraint: BindingConstraint) -> None:

def delete(self, children: bool) -> None:
raise NotImplementedError

def read_areas(self) -> List:
raise NotImplementedError

0 comments on commit e0d2947

Please sign in to comment.