Skip to content

Commit

Permalink
fix: remove typing that breaks causes import failures
Browse files Browse the repository at this point in the history
  • Loading branch information
tecoholic committed Dec 8, 2023
1 parent db7aae4 commit f20fc1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion enterprise/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2385,7 +2385,7 @@ def truncate_string(string, max_length=MAX_ALLOWED_TEXT_LENGTH):
return (string, was_truncated)


def ensure_course_enrollment_is_allowed(course_id: str, email: str, enrollment_api_client: EnrollmentApiClient):
def ensure_course_enrollment_is_allowed(course_id, email, enrollment_api_client):
"""
Create a CourseEnrollmentAllowed object for invitation-only courses.
Expand Down

0 comments on commit f20fc1a

Please sign in to comment.