From 7e1d330595a07faa8881533bb88f7a7c5e09c0fe Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Wed, 22 Jul 2015 08:54:49 -0700 Subject: [PATCH] Fix lack of space between functions Somehow this passed through the gate and now it is causing related failures, so fix it so that those other failures will not happen. Change-Id: Idb046b0e4e23af49c947a80cf6f77fef3a9ec0c8 --- taskflow/persistence/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/taskflow/persistence/models.py b/taskflow/persistence/models.py index ce403c0d..a1d04bbd 100644 --- a/taskflow/persistence/models.py +++ b/taskflow/persistence/models.py @@ -63,6 +63,7 @@ def _format_shared(obj, indent): getattr(obj, attr_name))) return lines + def _is_all_none(arg, *args): if arg is not None: return False