mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-03 07:04:53 +00:00
14 lines
No EOL
120 B
Python
14 lines
No EOL
120 B
Python
"""
|
|
Should emit:
|
|
B029 - on lines 8 and 13
|
|
"""
|
|
|
|
try:
|
|
pass
|
|
except ():
|
|
pass
|
|
|
|
try:
|
|
pass
|
|
except () as e:
|
|
pass |