f string styling

This commit is contained in:
Stein van Broekhoven 2025-04-01 14:05:05 +02:00 committed by GitHub
parent aaa1ac1f60
commit 573aa50700
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -364,7 +364,7 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
return ret['members'] return ret['members']
def _get_node_ip(self, node): def _get_node_ip(self, node):
ret = self._get_json("%s/api2/json/nodes/%s/network" % (self.proxmox_url, node)) ret = self._get_json(f"{self.proxmox_url}/api2/json/nodes/{node}/network")
# sort interface by iface name to make selection as stable as possible # sort interface by iface name to make selection as stable as possible
ret.sort(key=lambda x: x['iface']) ret.sort(key=lambda x: x['iface'])
@ -373,13 +373,13 @@ class InventoryModule(BaseInventoryPlugin, Constructable, Cacheable):
try: try:
# only process interfaces adhering to these rules # only process interfaces adhering to these rules
if 'active' not in iface: if 'active' not in iface:
self.display.vvv("Interface %s on node %s does not have an active state" % (iface['iface'], node)) self.display.vvv(f"Interface {iface['iface']} on node {node} does not have an active state")
continue continue
if 'address' not in iface: if 'address' not in iface:
self.display.vvv("Interface %s on node %s does not have an address" % (iface['iface'], node)) self.display.vvv(f"Interface {iface['iface']} on node {node} does not have an address")
continue continue
if 'gateway' not in iface: if 'gateway' not in iface:
self.display.vvv("Interface %s on node %s does not have a gateway" % (iface['iface'], node)) self.display.vvv(f"Interface {iface['iface']} on node {node} does not have a gateway")
continue continue
return iface['address'] return iface['address']
except Exception: except Exception: