diff --git a/src/coral/utils.py b/src/coral/utils.py index 8e6ed520..da060f19 100644 --- a/src/coral/utils.py +++ b/src/coral/utils.py @@ -30,13 +30,7 @@ def block_terminal_output() -> None: - """Blocks undesired terminal output. - - This blocks the following output: - - User warnings - - Logs from the `datasets` package - - Progress bars from the `datasets` package - """ + """Blocks undesired terminal output.""" # Ignore user warnings throughout the codebase warnings.filterwarnings("ignore", category=UserWarning) warnings.filterwarnings("ignore", category=RuntimeWarning)