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

try without importing it at all

this is simply to diagnose the behaviour in the CI
1 merge request!1release v0.1.0.0
Pipeline #43087 failed with stage
in 3 minutes and 2 seconds
Showing with 8 additions and 8 deletions
+8 -8
...@@ -2,10 +2,10 @@ from typing import List, Dict ...@@ -2,10 +2,10 @@ from typing import List, Dict
from numpy import dtype from numpy import dtype
from numpy.typing import NDArray from numpy.typing import NDArray
try: # try:
from ._evalhyd import _evald # from ._evalhyd import _evald
except ImportError: # except ImportError:
pass # pass
def evald(q_obs: NDArray[dtype('float64')], def evald(q_obs: NDArray[dtype('float64')],
......
...@@ -2,10 +2,10 @@ from typing import List, Dict ...@@ -2,10 +2,10 @@ from typing import List, Dict
from numpy import dtype from numpy import dtype
from numpy.typing import NDArray from numpy.typing import NDArray
try: # try:
from ._evalhyd import _evalp # from ._evalhyd import _evalp
except ImportError: # except ImportError:
pass # pass
def evalp(q_obs: NDArray[dtype('float64')], 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