]> asedeno.scripts.mit.edu Git - bluechips.git/blobdiff - bluechips/controllers/status.py
Fix a few of the more sane pylint warnings
[bluechips.git] / bluechips / controllers / status.py
index f3373ddc398ba93fcb3c6ebbc512d80be532189a..9c0358f80056c95fbac0178dc7c4e40ddd7fd114 100644 (file)
@@ -29,7 +29,7 @@ class StatusController(BaseController):
         this_month = date.today().replace(day=1)
         last_month = (date.today() - timedelta(days=30)).replace(day=1)
         
-        c.year_total, c.this_year_total, c.this_month_total =\
+        c.year_total, c.this_year_total, c.this_month_total = \
             [self._total(model.expenditures.c.date >= i)
              for i in [year, this_year, this_month]]