1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ihatemoney_ynh.git synced 2024-09-03 19:26:15 +02:00

remove unused code

If that code is ever needed, I'll try to rewrite it as a class
decorator, which is more hype
This commit is contained in:
Feth AREZKI 2012-03-06 22:42:58 +01:00
parent 353aec4f1e
commit 46d2dfeb29

View file

@ -32,12 +32,3 @@ class Redirect303(HTTPException, RoutingException):
def get_response(self, environ):
return redirect(self.new_url, 303)
def for_all_methods(decorator):
"""Apply a decorator to all the methods of a class"""
def decorate(cls):
for name, method in inspect.getmembers(cls, inspect.ismethod):
setattr(cls, name, decorator(method))
return cls
return decorate