Skip to content

Commit 8530d56

Browse files
committed
Ignore type error
1 parent 4c777e8 commit 8530d56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/subscript/fmuobs/writers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import re
66
from pathlib import Path, PosixPath
7-
from typing import List
7+
from typing import Dict, List
88

99
import numpy as np
1010
import pandas as pd
@@ -431,7 +431,7 @@ def df2obsdict(obs_df: pd.DataFrame, parent_dir: PosixPath = PosixPath(".")) ->
431431
if "GENERAL_OBSERVATION" in obs_df["CLASS"].values:
432432
obsdict[CLASS_SHORTNAME["GENERAL_OBSERVATION"]] = general_df2obsdict(
433433
obs_df.set_index("CLASS").loc[["GENERAL_OBSERVATION"]], parent_dir
434-
)
434+
) # type:ignore
435435

436436
# Process BLOCK_OBSERVATION:
437437
if "BLOCK_OBSERVATION" in obs_df["CLASS"].values:

0 commit comments

Comments
 (0)