From 1d4d2491085e55b646dbce9612648722533ecd68 Mon Sep 17 00:00:00 2001 From: quasd Date: Tue, 10 Feb 2026 15:58:23 +0200 Subject: [PATCH] Run formatters --- plugins/modules/ipa_host.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/modules/ipa_host.py b/plugins/modules/ipa_host.py index 77f6f01844..557172645a 100644 --- a/plugins/modules/ipa_host.py +++ b/plugins/modules/ipa_host.py @@ -203,7 +203,9 @@ class HostIPAClient(IPAClient): return self._post_json(method="host_show", name=name) def host_find(self, name): - return self._append_keytab_status(self._post_json(method="host_find", name=None, item={"all": True, "fqdn": name}), name) + return self._append_keytab_status( + self._post_json(method="host_find", name=None, item={"all": True, "fqdn": name}), name + ) def host_add(self, name, host): return self._append_keytab_status(self._post_json(method="host_add", name=name, item=host), name)