/
githubmirror
/
edx-platform
Обзор
Документация
Войти
/
githubmirror
/
edx-platform
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
release-ulmo
xmodule/modulestore/split_mongo/__init__.py
10 строк
314 B
Kyle D. McCormick
fix: move BlockKey and derived_key to avoid cyclical import
16 янв 2024, 17:37
16 янв 2024, 17:37
e8b60ae
Код
Авторство
О чём код?
""" General utilities """ from collections import namedtuple # We import BlockKey here for backwards compatibility with modulestore code. # Feel free to remove this and fix the imports if you have time. from xmodule.util.keys import BlockKey CourseEnvelope = namedtuple('CourseEnvelope', 'course_key structure')