From cb205026b0e052bf39d025caec8fc4190ffab00f Mon Sep 17 00:00:00 2001 From: haosenwang1018 <167664334+haosenwang1018@users.noreply.github.com> Date: Thu, 26 Feb 2026 01:06:16 +0000 Subject: [PATCH] fix: replace 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