6 lines
89 B
Python
6 lines
89 B
Python
|
|
from typing import Any, Dict
|
||
|
|
|
||
|
|
|
||
|
|
def kwargs(**kwargs) -> Dict[str, Any]:
|
||
|
|
return kwargs
|