From 7934b29ab5aae1f50c054cca60a95f171758737d Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Sat, 2 May 2020 11:04:21 -0400 Subject: Assign to unnamed variable to placate linter --- python/flowgraph.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'python/flowgraph.py') diff --git a/python/flowgraph.py b/python/flowgraph.py index 9ee87a91..95809d45 100644 --- a/python/flowgraph.py +++ b/python/flowgraph.py @@ -691,10 +691,8 @@ class FlowGraph(object): Do not use this API on the UI thread (use :func:`layout` with a callback instead). """ self._wait_cond = threading.Lock() - self._wait_cond.acquire() - - request = self.layout(self._wait_complete) + _ = self.layout(self._wait_complete) self._wait_cond.acquire() self._wait_cond.release() -- cgit v1.3.1