The GitHub Actions job "Lint" on tvm.git/main has failed.
Run started by GitHub user MasterJH5574 (triggered by MasterJH5574).

Head commit for run:
7b771ce6230095268ac5f1d31af34b3f6e2a6888 / Sense_wang 
<[email protected]>
fix: replace 6 bare except clauses with except Exception (#18821)

## What
Replace 6 bare `except:` clauses with `except Exception:`.

## Why
Bare `except:` catches `BaseException`, including `KeyboardInterrupt`
and `SystemExit`, which can prevent clean process shutdown and mask
critical errors. Using `except Exception:` catches all application-level
errors while allowing system-level exceptions to propagate correctly.

Report URL: https://github.com/apache/tvm/actions/runs/22449633037

With regards,
GitHub Actions via GitBox


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to