Commit 8e6323ae authored by Theophile Terraz's avatar Theophile Terraz
Browse files

debug print

No related merge requests found
Pipeline #58352 passed with stages
in 7 minutes and 48 seconds
Showing with 4 additions and 3 deletions
+4 -3
......@@ -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(),
......
......@@ -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
......
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