work on BHS

setup.py
Theophile Terraz 2023-12-12 16:00:40 +01:00
parent 79b31e8d08
commit f64ed131f9
1 changed files with 3 additions and 3 deletions

View File

@ -81,13 +81,13 @@ class BasicHS(SQLSubModel):
@classmethod
def _get_ctor_from_type(cls, t):
from Model.HydraulicStructures.Basic.Types import (
NotDefined, Dummy,
BHS_types, NotDefined,
)
res = NotDefined
if t == "DU":
res = Dummy
if t in BHS_types.keys():
res = BHS_types[t]
return res