File size: 142 Bytes
7deb4a3 |
1 2 3 4 5 6 7 8 9 |
from typing import Any, TypedDict
class LogEntry(TypedDict):
project: str
run: str
metrics: dict[str, Any]
step: int | None
|
7deb4a3 |
1 2 3 4 5 6 7 8 9 |
from typing import Any, TypedDict
class LogEntry(TypedDict):
project: str
run: str
metrics: dict[str, Any]
step: int | None
|