(
self: SyncClientProtocol,
filters: List[str],
with_labels: bool | None = False,
select_labels: List[str] | None = None,
latest: bool | None = False,
)
| 1354 | |
| 1355 | @overload |
| 1356 | def mget( |
| 1357 | self: SyncClientProtocol, |
| 1358 | filters: List[str], |
| 1359 | with_labels: bool | None = False, |
| 1360 | select_labels: List[str] | None = None, |
| 1361 | latest: bool | None = False, |
| 1362 | ) -> list[Any] | dict[str, list[Any]]: ... |
| 1363 | |
| 1364 | @overload |
| 1365 | def mget( |
nothing calls this directly
no test coverage detected