summaryrefslogtreecommitdiff
path: root/python/flowgraph.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2020-05-02 11:04:21 -0400
committerPeter LaFosse <peter@vector35.com>2020-05-03 13:20:56 -0400
commit7934b29ab5aae1f50c054cca60a95f171758737d (patch)
tree0ac8ab326aa5668f5579ea1a0f5f026a95b0aee3 /python/flowgraph.py
parenteb09098726aee5c9e16bc3c2cfd103007365d9a8 (diff)
Assign to unnamed variable to placate linter
Diffstat (limited to 'python/flowgraph.py')
-rw-r--r--python/flowgraph.py4
1 files changed, 1 insertions, 3 deletions
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()