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

9 lines
168 B
Python

try:
from aa import mixer
except AttributeError:
from bb import mixer
except RuntimeError:
from cc import mixer
except:
from dd import mixer
mixer(123)