Fix PEP8: E225 missing whitespace around operator

This commit is contained in:
stv
2014-11-08 20:23:00 -08:00
parent 41390f0239
commit 00ae488960
6 changed files with 9 additions and 9 deletions

View File

@@ -45,7 +45,7 @@ class StudentState(object):
@property
def num_pending(self):
return max(self.INITIAL_ESSAYS_AVAILABLE- self.num_graded, 0)
return max(self.INITIAL_ESSAYS_AVAILABLE - self.num_graded, 0)
@property
def num_required(self):