Skip to content

Commit 2257ba7

Browse files
committed
Suppress broad-except warning
1 parent aab69bb commit 2257ba7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mx.graalpython/mx_graalpython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def libpythonvm_build_args():
292292
commit = str(vc.tip(SUITE.dir)).strip()
293293
try:
294294
branch = str(vc.active_branch(SUITE.dir)).strip()
295-
except Exception:
295+
except Exception: # pylint: disable=broad-except
296296
branch = "master"
297297

298298
if script := os.environ.get("ARTIFACT_DOWNLOAD_SCRIPT"):

0 commit comments

Comments
 (0)