Skip to content

Commit 909cad9

Browse files
committed
feat: Add fargo verbosity bool
1 parent 47a7a33 commit 909cad9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/radiosim/ppdisks/simulation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,7 @@ def simulate(
132132
parallel: bool = False,
133133
num_nodes: int = 1,
134134
show_progress: bool = True,
135+
show_fargo_output: bool = False,
135136
verbose: bool = False,
136137
overwrite: bool = False,
137138
) -> None:
@@ -353,7 +354,7 @@ def toml_serialize_dict(read_dict):
353354
model_id=model._id,
354355
show_progress=show_progress,
355356
verbose=verbose,
356-
show_fargo_output=True,
357+
show_fargo_output=show_fargo_output,
357358
)
358359

359360
self._setup.run(

0 commit comments

Comments
 (0)