removed redundant comment

This commit is contained in:
Pablo Hoffman 2012-09-05 15:54:23 -03:00
parent 44fe4c6b78
commit 3c05fbb6a9
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ def get_func_args(func, stripself=False):
else:
raise TypeError('%s is not callable' % type(func))
if stripself:
func_args.pop(0) # self
func_args.pop(0)
return func_args
def equal_attributes(obj1, obj2, attributes):