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
This commit is contained in:
Joshua Harlow
2015-07-22 08:54:49 -07:00
committed by Thomas Goirand
parent 3cb6b9230f
commit 4acad289a9

View File

@@ -72,6 +72,15 @@ def _format_shared(obj, indent):
return lines
def _is_all_none(arg, *args):
if arg is not None:
return False
for more_arg in args:
if more_arg is not None:
return False
return True
def _copy_function(deep_copy):
if deep_copy:
return copy.deepcopy