1
0
Fork 0
mirror of https://github.com/containers/ansible-podman-collections.git synced 2026-06-30 07:50:48 +00:00

Fix implicit string concatenation lint warnings

Signed-off-by: Sagi Shnaidman <sshnaidm@redhat.com>
This commit is contained in:
Sagi Shnaidman 2026-06-17 14:50:29 +03:00
parent 866cb90334
commit 39d89d1a36

View file

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