From d16b76ee75ac63c5756a5f437cb9471af67e975f Mon Sep 17 00:00:00 2001 From: Bernard Szabo Date: Thu, 24 Nov 2022 16:04:12 -0500 Subject: [PATCH] feat: TNL-10136 course_enrollment.py hygiene inclusion in __init__ docstring --- common/djangoapps/student/models/__init__.py | 3 ++- common/djangoapps/student/models/course_enrollment.py | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/common/djangoapps/student/models/__init__.py b/common/djangoapps/student/models/__init__.py index d08cf4b8ad..8e5c0c8281 100644 --- a/common/djangoapps/student/models/__init__.py +++ b/common/djangoapps/student/models/__init__.py @@ -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 * diff --git a/common/djangoapps/student/models/course_enrollment.py b/common/djangoapps/student/models/course_enrollment.py index eca5f1dd70..a8f356f2b2 100644 --- a/common/djangoapps/student/models/course_enrollment.py +++ b/common/djangoapps/student/models/course_enrollment.py @@ -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