[ARVADOS] updated: 2feec8cbac7ef28a47f3c3a9d071b070ef38cb6e
Git user
git at public.curoverse.com
Tue Jul 11 18:08:05 EDT 2017
Summary of changes:
sdk/cwl/arvados_cwl/runner.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via 2feec8cbac7ef28a47f3c3a9d071b070ef38cb6e (commit)
from 7e38c190147681b7d2ce64601b1ac9661812fcd6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 2feec8cbac7ef28a47f3c3a9d071b070ef38cb6e
Author: Peter Amstutz <peter.amstutz at curoverse.com>
Date: Tue Jul 11 18:06:43 2017 -0400
11948: if -> elif style fix
Arvados-DCO-1.1-Signed-off-by: Peter Amstutz <peter.amstutz at curoverse.com>
diff --git a/sdk/cwl/arvados_cwl/runner.py b/sdk/cwl/arvados_cwl/runner.py
index e76d628..087fed3 100644
--- a/sdk/cwl/arvados_cwl/runner.py
+++ b/sdk/cwl/arvados_cwl/runner.py
@@ -50,7 +50,7 @@ def find_defaults(d, op):
if isinstance(d, list):
for i in d:
find_defaults(i, op)
- if isinstance(d, dict):
+ elif isinstance(d, dict):
if "default" in d:
op(d)
else:
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list