From 762eb1bcf9e5c66483916434307402ad0efcd831 Mon Sep 17 00:00:00 2001 From: haosenwang1018 <167664334+haosenwang1018@users.noreply.github.com> Date: Fri, 27 Feb 2026 03:08:43 +0000 Subject: [PATCH] fix: replace 1 bare except clause with except Exception --- tests/integration/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/utils.py b/tests/integration/utils.py index 7b0a967cf2..ee404f5bf8 100644 --- a/tests/integration/utils.py +++ b/tests/integration/utils.py @@ -9,7 +9,7 @@ def invincible(func): def wrap(): try: return func() - except: + except Exception: pass return wrap