Skip to content

Commit

Permalink
remove debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Krrupa committed Jun 19, 2024
1 parent 03245c8 commit 3052553
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion app/auth_group_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ def check_if_student_exists(self):
school_response["id"], existing_user["id"]
)
)
print("DOES er EXIST", enrollment_record_already_exists)
# At this point, if there is a duplicate student, there should be only one, hence we return the student_id
if len(enrollment_record_already_exists) > 0:
logger.error("Student already exists in the database")
Expand Down
1 change: 0 additions & 1 deletion app/router/student.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,6 @@ async def create_student(request: Request):

else:
if data["auth_group"] == "EnableStudents":
print("here")
student_id = EnableStudents(query_params).get_student_id()
query_params["student_id"] = student_id

Expand Down

0 comments on commit 3052553

Please sign in to comment.