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

7 lines
101 B
Python

try:
from aa import mixer
except ImportError:
pass
else:
from bb import mixer
mixer(123)