mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-01-26 00:47:10 +08:00
6 lines
92 B
Python
6 lines
92 B
Python
# Everything resolves to Any.
|
|
from typing import Any
|
|
|
|
def __getattr__(name) -> Any:
|
|
...
|