Browse Source

Remove an unused iteration variable.

We can just iterate over the namespace dictionary's keys here.  We
don't need its values.
pull/455/head
Jon Parise 13 years ago
parent
commit
bb99158c87
  1. 2
      flask/views.py

2
flask/views.py

@ -107,7 +107,7 @@ class MethodViewType(type):
rv = type.__new__(cls, name, bases, d) rv = type.__new__(cls, name, bases, d)
if 'methods' not in d: if 'methods' not in d:
methods = set(rv.methods or []) methods = set(rv.methods or [])
for key, value in d.iteritems(): for key in d:
if key in http_method_funcs: if key in http_method_funcs:
methods.add(key.upper()) methods.add(key.upper())
# if we have no method at all in there we don't want to # if we have no method at all in there we don't want to

Loading…
Cancel
Save