remove a bunch of unnescesarry iterkeys() calls

This commit is contained in:
Alex Gaynor
2012-08-08 07:33:15 -07:00
parent 5419ee33e3
commit 2f0d71090b

View File

@@ -44,7 +44,7 @@ class StepsHelper(object):
@property
def all(self):
"Returns the names of all steps/forms."
return list(six.iterkeys(self._wizard.get_form_list()))
return list(self._wizard.get_form_list())
@property
def count(self):