From 0d15347210dda2306e34fdd3c9c9b8b437b075a3 Mon Sep 17 00:00:00 2001 From: Peter Law Date: Sat, 24 Jul 2021 16:14:20 +0100 Subject: [PATCH] Remove confusing comment I'm assuming that this is incorrect given that there _are_ arguments where the comment suggests there aren't any. --- test/test_inference/test_signature.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/test_inference/test_signature.py b/test/test_inference/test_signature.py index 85adaff7..a4df83c3 100644 --- a/test/test_inference/test_signature.py +++ b/test/test_inference/test_signature.py @@ -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