ruff/crates/ruff_linter/resources/test/fixtures/flake8_bugbear/B029.py
2023-09-20 08:38:27 +02:00

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