Skip to content
This repository has been archived by the owner on Jan 19, 2022. It is now read-only.

Commit

Permalink
Set maximum points to 1.0 on new assignments
Browse files Browse the repository at this point in the history
The platform always returns a percentage, but we set the max points of
new grades to be 100, which means students need a really big curve to pass.
  • Loading branch information
carsongee committed Apr 29, 2015
1 parent 30a6eaf commit bbedb5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylmod/gradebook.py
Expand Up @@ -916,7 +916,7 @@ def _spreadsheet2gradebook_multi(
shortname = field[0:3] + field[-2:]
log.info('calling create_assignment from multi')
response = self.create_assignment(
name, shortname, 1.0, 100.0, '12-15-2013'
name, shortname, 1.0, 1.0, '12-15-2013'
)
if (
not response.get('data', '') or
Expand Down

0 comments on commit bbedb5a

Please sign in to comment.