| from typing import Dict, List, Any | |
| class EndpointHandler(): | |
| def __init__(self, path=""): | |
| pass | |
| def __call__(self, data: Any) -> List[List[Dict[str, float]]]: | |
| return 42.0 | |
| from typing import Dict, List, Any | |
| class EndpointHandler(): | |
| def __init__(self, path=""): | |
| pass | |
| def __call__(self, data: Any) -> List[List[Dict[str, float]]]: | |
| return 42.0 | |