examples: remove unused assignment in "examples/python/gi/wifi-p2p.py"

lgtm.com warns about this.
This commit is contained in:
Thomas Haller
2020-05-06 23:09:21 +02:00
parent cc1c2c9fc9
commit a5614dc469

View File

@@ -82,7 +82,7 @@ def scan_timeout_cb(device):
def start_find_cb(device, async_result, user_data):
try:
r = device.start_find_finish(async_result)
device.start_find_finish(async_result)
except Exception as e:
sys.stderr.write("Error: %s\n" % e)
main_loop.quit()