From 39d89d1a36e396ec33b7ca752feb6930e962bf91 Mon Sep 17 00:00:00 2001 From: Sagi Shnaidman Date: Wed, 17 Jun 2026 14:50:29 +0300 Subject: [PATCH] Fix implicit string concatenation lint warnings Signed-off-by: Sagi Shnaidman --- plugins/modules/podman_network.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/podman_network.py b/plugins/modules/podman_network.py index 954953e..c8fc87a 100644 --- a/plugins/modules/podman_network.py +++ b/plugins/modules/podman_network.py @@ -595,7 +595,7 @@ class PodmanNetworkDiff: def diffparam_ip_range(self): if not HAS_IP_ADDRESS_MODULE: - self.module.warn("Python 'ipaddress' module is not available. " "Skipping ip_range idempotency check.") + self.module.warn("Python 'ipaddress' module is not available. Skipping ip_range idempotency check.") return False before = "" after = self.params["ip_range"] or "" @@ -915,7 +915,7 @@ class PodmanNetworkManager: } process_action = states_map[self.state] process_action() - self.module.fail_json(msg="Unexpected logic error happened, " "please contact maintainers ASAP!") + self.module.fail_json(msg="Unexpected logic error happened, please contact maintainers ASAP!") def make_present(self): """Run actions if desired state is 'started'."""