Advertisement
Guest User

Untitled

a guest
Dec 5th, 2014
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.27 KB | None | 0 0
  1. report = {
  2.     'server_count_per_day': OrderedDict(), # These are ordered dicts because
  3.                            # otherwise the dates end up out of
  4.                            # order.
  5.     'automation_count_per_day': OrderedDict(),
  6.     'total_server_cost': 0,
  7.     'total_automation_cost': 0,
  8.     'total': 0,
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement