From de6a4dd4290798122213cb8a518265fc2eb74fec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Eide?= Date: Mon, 30 Sep 2024 13:55:07 +0200 Subject: [PATCH] Fixes --- src/ert/config/refcase.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/ert/config/refcase.py b/src/ert/config/refcase.py index f5c1fbb4964..676053ff437 100644 --- a/src/ert/config/refcase.py +++ b/src/ert/config/refcase.py @@ -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 @@ -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):