Skip to content

Commit

Permalink
fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
sugaf1204 committed Jul 25, 2024
1 parent 463c8e4 commit 83e8000
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/modules/network_interface_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,9 @@


def run(module, client):
machine_obj = Machine.get_by_fqdn(module, client, must_exist=True, name_field_ansible="machine")
machine_obj = Machine.get_by_fqdn(
module, client, must_exist=True, name_field_ansible="machine"
)
if module.params["mac_address"]:
nic_obj = machine_obj.find_nic_by_mac(module.params["mac_address"])
if nic_obj:
Expand Down

0 comments on commit 83e8000

Please sign in to comment.