Skip to content

Commit

Permalink
Revert "feat: add typing to the ensure cea utility method"
Browse files Browse the repository at this point in the history
This reverts commit b6b2f25.
  • Loading branch information
tecoholic committed Nov 14, 2023
1 parent 8ce0c0a commit dcfcae1
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions enterprise/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
from django.utils.translation import gettext as _
from django.utils.translation import ngettext

from enterprise.api_client.lms import EnrollmentApiClient
from enterprise.constants import (
ALLOWED_TAGS,
BEST_MODE_ORDER,
Expand Down Expand Up @@ -2391,9 +2390,9 @@ def ensure_course_enrollment_is_allowed(course_id: str, email: str, enrollment_a
Create a CourseEnrollmentAllowed object for invitation-only courses.
Arguments:
course_id: ID of the course to allow enrollment
email: email of the user whose enrollment should be allowed
enrollment_api_client: Enrollment API Client
course_id (str): ID of the course to allow enrollment
email (str): email of the user whose enrollment should be allowed
enrollment_api_client (:class:`enterprise.api_client.lms.EnrollmentApiClient`): Enrollment API Client
"""
if not CourseEnrollmentAllowed:
raise NotConnectedToOpenEdX()
Expand Down

0 comments on commit dcfcae1

Please sign in to comment.