debug print

compare_results
Theophile Terraz 2024-09-16 11:41:36 +02:00
parent 83c03c998a
commit 8e6323ae48
2 changed files with 4 additions and 3 deletions

View File

@ -397,12 +397,13 @@ class MeshingWithMageMailleurTT(AMeshingTool):
logger.info(
f"! {self._exe_path()} " +
f"{st_file} {m_file} " +
f"update_rk " +
f"update_kp " +
f"{str(step)} " +
f"{limites[0]} {limites[1]} " +
f"{directrices[0]} {directrices[1]} " +
f"{orientation} {lm} {linear} " +
f"{origin} "
f"{origin} " +
f"{origin_value} "
)
proc.start(
self._exe_path(),

View File

@ -67,7 +67,7 @@ class PamhyrModelDict(SQLSubModel):
if key in self._dict:
v = self._dict[key]
if type(v) is types.GeneratorType:
if isinstance(v, types.GeneratorType):
return list(v)
return v