From ab0cd17772df2299e661bd64393bd9ef0e6eed3f Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 8 Jan 2016 09:58:18 +0100 Subject: [PATCH] Fix lint. --- tests/integration/features/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/features/conftest.py b/tests/integration/features/conftest.py index 63c4777db..3d856f396 100644 --- a/tests/integration/features/conftest.py +++ b/tests/integration/features/conftest.py @@ -398,7 +398,7 @@ def _wait_for_clipboard(qtbot, clipboard, mode, expected): # We need to poll the clipboard, as for some reason it can change with # emitting changed (?). - with qtbot.waitSignal(clipboard.changed, timeout=100, raising=False) as blocker: + with qtbot.waitSignal(clipboard.changed, timeout=100, raising=False): pass if timer.hasExpired(timeout):