We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7365e6 commit 604b3dbCopy full SHA for 604b3db
roundup/rest.py
@@ -360,7 +360,7 @@ def index():
360
361
if isinstance(methods, basestring): # convert string to tuple
362
methods = (methods,)
363
- methods = set(item.upper() for item in methods)
+ methods = {item.upper() for item in methods}
364
365
# convert a rule to a compiled regex object
366
# so /data/<:class>/<:id> will become
0 commit comments