Skip to content

Commit

Permalink
format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanpdx committed Jan 7, 2024
1 parent 641eb21 commit 9efada6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/edl_file_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,9 @@ def main():
downlink_host = args.host if args.host in ["localhost", "127.0.0.1"] else ""
downlink_address = (downlink_host, args.downlink_port)

t = Thread(target=recv_thread, args=(downlink_address, hmac_key, args.bad_connection), daemon=True)
t = Thread(
target=recv_thread, args=(downlink_address, hmac_key, args.bad_connection), daemon=True
)
t.start()

entity = GroundEntity(args.file_path, file_data, args.buffer_size)
Expand Down

0 comments on commit 9efada6

Please sign in to comment.