Remove confusing comment

I'm assuming that this is incorrect given that there _are_ arguments
where the comment suggests there aren't any.
This commit is contained in:
Peter Law
2021-07-24 16:14:20 +01:00
parent 41652507b3
commit 0d15347210

View File

@@ -273,8 +273,6 @@ def test_pow_signature(Script, environment):
def x(f):
@functools.wraps(f)
def wrapper(*args):
# Have no arguments here, but because of wraps, the signature
# should still be f's.
return f(*args)
return wrapper