Commit f78b3d78 authored by Thibault Hallouin's avatar Thibault Hallouin
Browse files

try ignoring the import error

1 merge request!1release v0.1.0.0
Pipeline #43083 failed with stage
in 2 minutes and 59 seconds
Showing with 8 additions and 2 deletions
+8 -2
......@@ -2,7 +2,10 @@ from typing import List, Dict
from numpy import dtype
from numpy.typing import NDArray
from ._evalhyd import _evald
try:
from ._evalhyd import _evald
except ImportError:
pass
def evald(q_obs: NDArray[dtype('float64')],
......
......@@ -2,7 +2,10 @@ from typing import List, Dict
from numpy import dtype
from numpy.typing import NDArray
from ._evalhyd import _evalp
try:
from ._evalhyd import _evalp
except ImportError:
pass
def evalp(q_obs: NDArray[dtype('float64')],
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment