mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 05:15:12 +00:00
7 lines
101 B
Python
7 lines
101 B
Python
try:
|
|
from aa import mixer
|
|
except ImportError:
|
|
pass
|
|
else:
|
|
from bb import mixer
|
|
mixer(123)
|