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:
parent
866cb90334
commit
39d89d1a36
1 changed files with 2 additions and 2 deletions
|
|
@ -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'."""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue