From 181f02e3f0cb253753c19e01e114cdefcfd28399 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 07:21:05 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- plugins/module_utils/network/ios/rm_templates/acls.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/module_utils/network/ios/rm_templates/acls.py b/plugins/module_utils/network/ios/rm_templates/acls.py index 327f12ed5..80cb19656 100644 --- a/plugins/module_utils/network/ios/rm_templates/acls.py +++ b/plugins/module_utils/network/ios/rm_templates/acls.py @@ -78,7 +78,8 @@ def source_destination_common_config(config_data, command, attr): ) elif aces.get("protocol"): command += " {protocol}".format(**aces) - if aces.get("service_object_group"): command += " object-group {service_object_group}".format(**aces) + if aces.get("service_object_group"): + command += " object-group {service_object_group}".format(**aces) if aces.get("source"): command = source_destination_common_config(aces, command, "source") if aces.get("destination"):