From 5e2a9ab0ac7f0d08014a5ce884ef8ae458b3861f Mon Sep 17 00:00:00 2001 From: Joel Ostblom Date: Mon, 16 Dec 2024 10:30:26 -0800 Subject: [PATCH] Remove grading basis column The Workday team seems to also have realized that this column was redundant and removed it from the supported upload format. --- canvascli/main.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/canvascli/main.py b/canvascli/main.py index bf793a8..bf48299 100644 --- a/canvascli/main.py +++ b/canvascli/main.py @@ -693,10 +693,6 @@ def convert_grades_to_submission_format(self): self.prepared_grades[additional_fields] = ( self.campus, self.course_name, self.session, self.subject, '', '') - # The new workday format seems to set the "Grading Basis" column to "Graded" - # for every student in the the downloaded CSV file, before knowing whether a grade will actually be entered. - # Just brilliant... I'm unsure whether we need to remove this if a grade is not entered. - self.prepared_grades['Grading Basis'] = 'Graded' self.prepared_grades['Grade Note'] = '' self.prepared_grades['Status'] = '' self.prepared_grades['Updated By'] = '' @@ -751,7 +747,6 @@ def save_prepared_grades_to_file(self): 'Student Id', 'Student Preferred Name', 'Student Last Name', - 'Grading Basis', 'Grade', 'Grade Note', 'Academic Period',