From 3a4320c2e6ca798fef6cb3bc2fb3b02a7bda76c4 Mon Sep 17 00:00:00 2001 From: Dmitriy Rabotyagov Date: Fri, 17 Jun 2022 16:52:59 +0200 Subject: [PATCH] Add blank lines between functions and classes Change-Id: Id178c7e7311f8e1e9950c94d2ab4fa46c396d6d0 --- plugins/action/config_template.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/action/config_template.py b/plugins/action/config_template.py index 472d483..51fa85f 100644 --- a/plugins/action/config_template.py +++ b/plugins/action/config_template.py @@ -69,6 +69,7 @@ except NameError: if yaml.SafeDumper not in AnsibleDumper.__bases__: AnsibleDumper.__bases__ = (yaml.SafeDumper,) + AnsibleDumper.__bases__ + class IDumper(AnsibleDumper): def increase_indent(self, flow=False, indentless=False): return super(IDumper, self).increase_indent(flow, False)