Files

6 lines
88 B
Python
Raw Permalink Normal View History

2026-05-12 19:40:31 +09:00
from typing import Any, List
def args(*args: Any) -> List[Any]:
return list(args)