Skip to content

Commit

Permalink
Fix use of await on non-async function probe_network
Browse files Browse the repository at this point in the history
Signed-off-by: Olivier Gayot <[email protected]>
  • Loading branch information
ogayot committed Jul 2, 2024
1 parent 1afbd25 commit d94ac34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/probert
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async def main():
if opts.all or not any(probe_opts):
await p.probe_all(parallelize=opts.parallel)
if opts.network:
await p.probe_network()
p.probe_network()
if opts.storage:
await p.probe_storage(parallelize=opts.parallel)
if opts.firmware:
Expand Down

0 comments on commit d94ac34

Please sign in to comment.