Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
oyvindeide committed Sep 30, 2024
1 parent f402b5e commit de6a4dd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/ert/config/refcase.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
from dataclasses import dataclass
from datetime import datetime
from typing import (
Any,
List,
Optional,
Sequence,
)

import numpy as np
import numpy.typing as npt

from ._read_summary import read_summary
from .parsing.config_dict import ConfigDict
Expand All @@ -21,7 +19,7 @@ class Refcase:
start_date: datetime
keys: List[str]
dates: Sequence[datetime]
values: npt.NDArray[Any]
values: List[float]

def __eq__(self, other: object) -> bool:
if not isinstance(other, Refcase):
Expand Down

0 comments on commit de6a4dd

Please sign in to comment.