From 3270f239378f6bfb85a7b02c1153963129465630 Mon Sep 17 00:00:00 2001 From: "max.sickora" Date: Wed, 17 Jul 2024 16:31:20 +0200 Subject: [PATCH] Black added --- plugins/modules/tag_group.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/modules/tag_group.py b/plugins/modules/tag_group.py index c4015d6ed..5de9433e2 100644 --- a/plugins/modules/tag_group.py +++ b/plugins/modules/tag_group.py @@ -292,7 +292,9 @@ def run_module(): if module.params.get("state") == "present": if taggroup.current.http_code == 200: # If tag group has changed then update it. - if changes_detected(module, json.loads(taggroup.current.content.decode("utf-8"))): + if changes_detected( + module, json.loads(taggroup.current.content.decode("utf-8")) + ): taggroup.headers["If-Match"] = taggroup.current.etag result = taggroup.put()