Files
2026-05-12 19:40:31 +09:00

6 lines
88 B
Python

from typing import Any, List
def args(*args: Any) -> List[Any]:
return list(args)