mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 21:35:58 +00:00
9 lines
168 B
Python
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)
|