mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 14:21:53 +00:00
29 lines
287 B
Python
29 lines
287 B
Python
try:
|
|
pass
|
|
except Exception:
|
|
continue
|
|
|
|
try:
|
|
pass
|
|
except:
|
|
continue
|
|
|
|
try:
|
|
pass
|
|
except (Exception,):
|
|
continue
|
|
|
|
try:
|
|
pass
|
|
except (Exception, ValueError):
|
|
continue
|
|
|
|
try:
|
|
pass
|
|
except ValueError:
|
|
continue
|
|
|
|
try:
|
|
pass
|
|
except (ValueError,):
|
|
continue
|