summaryrefslogtreecommitdiff
path: root/pyflakes/test/test_script.py
diff options
context:
space:
mode:
authorJonathan Lange <jml@canonical.com>2012-10-19 11:31:12 +0100
committerJonathan Lange <jml@canonical.com>2012-10-19 11:31:12 +0100
commit0501ef884f2ca7dd89bc2459fa132c0f19cb394f (patch)
treea09d0f0fff4015795aa02940cd24b4f6a81a71d7 /pyflakes/test/test_script.py
parent62f01c1552ed27ecbcc0bffcb3a374fc848af347 (diff)
downloadpyflakes-0501ef884f2ca7dd89bc2459fa132c0f19cb394f.tar.gz
Remove unnecessary parens
Diffstat (limited to 'pyflakes/test/test_script.py')
-rw-r--r--pyflakes/test/test_script.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyflakes/test/test_script.py b/pyflakes/test/test_script.py
index 147a2b3..8a3938e 100644
--- a/pyflakes/test/test_script.py
+++ b/pyflakes/test/test_script.py
@@ -509,7 +509,7 @@ class IntegrationTests(TestCase):
command.extend(paths)
if stdin:
d = _callProtocolWithDeferred(
- (lambda d: _EverythingGetterWithStdin(d, stdin)),
+ lambda d: _EverythingGetterWithStdin(d, stdin),
sys.executable, command, env=env, path=None)
else:
d = getProcessOutputAndValue(sys.executable, command, env=env)