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 @classmethod
def _get_ctor_from_type(cls, t): def _get_ctor_from_type(cls, t):
from Model.HydraulicStructures.Basic.Types import ( from Model.HydraulicStructures.Basic.Types import (
NotDefined, Dummy, BHS_types, NotDefined,
) )
res = NotDefined res = NotDefined
if t == "DU": if t in BHS_types.keys():
res = Dummy res = BHS_types[t]
return res return res