/
vshmidt
/
label-studio
Обзор
Документация
Войти
/
vshmidt
/
label-studio
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
label_studio/projects/apps.py
20 строк
430 B
bmartel
chore: FIT-671: Add state transitions to the current application flows (#8534)
06 ноя 2025, 19:03
Не верифицирован
06 ноя 2025, 19:03
fc22d6f
Код
Авторство
О чём код?
"""Projects Django App Configuration""" import logging from django.apps import AppConfig logger = logging.getLogger(__name__) class ProjectsConfig(AppConfig): name = 'projects' def ready(self): """ Projects app initialization. Note: FSM transitions are now registered centrally in fsm/apps.py. Do NOT import transitions here to avoid duplicate registration. """ pass