This function disables printing when not in master process.
Source code in src/ocean_emulators/utils/distributed.py
| def suppress_prints(is_master):
"""This function disables printing when not in master process."""
if not is_master:
builtins.print = print
|