feat: TNL-10136 course_enrollment.py hygiene

inclusion in __init__
docstring
This commit is contained in:
Bernard Szabo
2022-11-24 16:04:12 -05:00
committed by bszabo
parent 2d544f94be
commit d16b76ee75
2 changed files with 3 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
'''
Student models migrated to folder to tease out the course enrollment aspects from Student
'''
from .student import *
from .user import *
from .course_enrollment import *

View File

@@ -1,3 +1,4 @@
"""Models for course enrollment"""
import hashlib # lint-amnesty, pylint: disable=wrong-import-order
import logging # lint-amnesty, pylint: disable=wrong-import-order
import uuid # lint-amnesty, pylint: disable=wrong-import-order