mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-02 06:42:02 +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)
|