Skip to content

Commit 1f3341c

Browse files
committed
Add missing comma
1 parent e5025c0 commit 1f3341c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

classroom/snippets/classroom_snippets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def list_submissions(self, course_id, coursework_id):
216216
response = coursework.studentSubmissions().list(
217217
pageToken=page_token,
218218
courseId=course_id,
219-
courseWorkId=coursework_id
219+
courseWorkId=coursework_id,
220220
pageSize=10).execute()
221221
submissions.extend(response.get('studentSubmissions', []))
222222
page_token = response.get('nextPageToken', None)

0 commit comments

Comments
 (0)