summaryrefslogtreecommitdiff
path: root/taskflow/patterns
diff options
context:
space:
mode:
authorAngus Salkeld <asalkeld@redhat.com>2013-06-25 16:38:30 +1000
committerAngus Salkeld <asalkeld@redhat.com>2013-06-26 11:04:30 +1000
commit6b17ba8ab7a20ff36026dfe90ddc0d9a80f341e0 (patch)
treef027f4f0b5491dfa2a2b7da7a7f41b856c41406c /taskflow/patterns
parent339e43d03b049e5de59addab0e9cbb5f8366af30 (diff)
downloadtaskflow-6b17ba8ab7a20ff36026dfe90ddc0d9a80f341e0.tar.gz
Fix all flake8 E* and F* errors
This was mostly unused modules or local variables. Change-Id: I39f9598ba8b64101a10f80bae448d27272abeddd
Diffstat (limited to 'taskflow/patterns')
-rw-r--r--taskflow/patterns/distributed_flow.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/taskflow/patterns/distributed_flow.py b/taskflow/patterns/distributed_flow.py
index 1c97968..3a12cb9 100644
--- a/taskflow/patterns/distributed_flow.py
+++ b/taskflow/patterns/distributed_flow.py
@@ -79,7 +79,7 @@ class Flow(object):
# TODO(jlucci): Need to set up chord so that it's not executed
# immediately.
- c = chord(header, body=callback_task)
+ chord(header, body=callback_task)
def run(self, context, *args, **kwargs):
""" Start root task and kick off workflow """