Skip to content

Commit a064224

Browse files
committed
fix: updating type hints
1 parent e567810 commit a064224

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

LoopStructural/utils/_surface.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import annotations
22

3-
from typing import Optional, Union, Callable, List
3+
from typing import Optional, Union, Callable, List, Dict
44
import numpy as np
55
import numpy.typing as npt
66
from LoopStructural.utils.logging import getLogger
@@ -15,7 +15,7 @@
1515
# from LoopStructural.interpolators._geological_interpolator import GeologicalInterpolator
1616
from LoopStructural.datatypes import Surface, BoundingBox
1717

18-
surface_list = dict[str, Surface]
18+
surface_list = List[Surface]
1919

2020

2121
class LoopIsosurfacer:

0 commit comments

Comments
 (0)