From 771164997f41ebe4ae7270147b03f5551b46f4c0 Mon Sep 17 00:00:00 2001 From: ilan-gold Date: Fri, 21 Feb 2025 11:56:29 +0100 Subject: [PATCH] (fix): remote `@wraps(BaseException.add_note)` --- src/scanpy/_compat.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/scanpy/_compat.py b/src/scanpy/_compat.py index 9ea7780b0d..68bacb7bcc 100644 --- a/src/scanpy/_compat.py +++ b/src/scanpy/_compat.py @@ -108,7 +108,6 @@ def old_positionals(*old_positionals: str): if sys.version_info >= (3, 11): - @wraps(BaseException.add_note) def add_note(exc: BaseException, note: str) -> None: exc.add_note(note) else: