11 lines
150 B
Python
11 lines
150 B
Python
from typing import Any
|
|
|
|
|
|
def process(data: Any) -> Any:
|
|
result: Any = data
|
|
return result
|
|
|
|
|
|
def store(items: dict[str, Any]) -> None:
|
|
pass
|