예제 #1
0
 def put(self, course_uuid):
     """
     Upsert the course with the specified ID
     """
     edit_course = Course(**api.payload)
     edit_course.uuid = course_uuid
     edit_course.save()