Remove print statement

This commit is contained in:
Ramon Wenger 2024-07-25 16:51:50 +02:00 committed by Christian Cueni
parent 6a0f2239af
commit d75fb9e836
1 changed files with 0 additions and 1 deletions

View File

@ -108,7 +108,6 @@ class CourseSessionProfileMutation(relay.ClientIDMutation):
) )
csu.chosen_profile = profile csu.chosen_profile = profile
csu.save() csu.save()
print(user)
return cls(result=UpdateCourseProfileSuccess(user=csu)) return cls(result=UpdateCourseProfileSuccess(user=csu))
except CourseProfile.DoesNotExist: except CourseProfile.DoesNotExist:
return cls(result=UpdateCourseProfileError("Course Profile does not exist")) return cls(result=UpdateCourseProfileError("Course Profile does not exist"))