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'."""