Skip to content

Commit

Permalink
Fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
Juliette-Gerbaux committed Jan 8, 2025
1 parent 212da0e commit 5290dde
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/estimation.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
class Estimator:

def __init__(self) -> None:
raise NotImplemented
raise NotImplementedError

def update(
self,
Expand All @@ -22,7 +22,7 @@ def update(
idx: int,
list_areas: List[str],
) -> None:
raise NotImplemented
raise NotImplementedError

def get_value(self, x: Dict[str, float]) -> float:
return NotImplemented
Expand Down Expand Up @@ -132,7 +132,7 @@ def update(
duals: Union[np.ndarray, float],
controls: Optional[np.ndarray],
) -> None:
raise NotImplemented
raise NotImplementedError

def count_redundant(
self, tolerance: float, remove: bool = False
Expand Down

0 comments on commit 5290dde

Please sign in to comment.