From 83850c1cbc0ec1ffaa579983393b9d19ddafaa12 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Thu, 30 Oct 2025 01:25:06 -0700 Subject: [PATCH] [error] also exclude concurrent.futures.process from traces --- masque/error.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/masque/error.py b/masque/error.py index fcf69a5..f434e51 100644 --- a/masque/error.py +++ b/masque/error.py @@ -53,7 +53,7 @@ def format_stacktrace( *, skip_file_prefixes: tuple[str, ...] = (MASQUE_DIR,), low_file_prefixes: tuple[str, ...] = (''), - low_file_suffixes: tuple[str, ...] = ('IPython/utils/py3compat.py', ), + low_file_suffixes: tuple[str, ...] = ('IPython/utils/py3compat.py', 'concurrent/futures/process.py'), ) -> str: """ Utility function for making nicer stack traces (e.g. excluding and similar)