Skip to content

Commit

Permalink
PEP8 fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
jiffyclub committed Jun 16, 2014
1 parent 7fba60f commit 564f48f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions urbansim/models/lcm.py
Original file line number Diff line number Diff line change
Expand Up @@ -815,8 +815,11 @@ def to_dict(self):
'model_expression': self.default_model_expr,
},
'fitted': self.fitted,
'models': {yamlio.to_scalar_safe(name): self._process_model_dict(m.to_dict())
for name, m in self._group.models.items()}
'models': {
yamlio.to_scalar_safe(name):
self._process_model_dict(m.to_dict())
for name, m in self._group.models.items()
}
}

def to_yaml(self, str_or_buffer=None):
Expand Down

0 comments on commit 564f48f

Please sign in to comment.