Commit 1c0062f2 authored by Thibault Hallouin's avatar Thibault Hallouin
Browse files

Revert "try without importing it at all"

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