/
vshmidt
/
label-studio
Обзор
Документация
Войти
/
vshmidt
/
label-studio
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
label_studio/tests/sdk/utils.py
9 строк
321 B
Jo Booth
chore: LEAP-52: add tests for the pagination fix in label-studio-sdk#153 (#4891)
13 окт 2023, 04:48
Не верифицирован
13 окт 2023, 04:48
24ed801
Код
Авторство
О чём код?
from typing import Sequence, Tuple def sdk_logs(caplog) -> Sequence[Tuple[str, str, str]]: """ Get the SDK logs from the passed caplog fixture. Useful for asserting on SDK log output. """ return [record_tuple for record_tuple in caplog.record_tuples if record_tuple[0].startswith('label_studio_sdk.')]