Skip to content

Commit

Permalink
Removed f-string mistake for 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
stryngs committed Aug 27, 2023
1 parent 76ffeea commit a7d9333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/gps_web.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def __init__(self, args):
else:
mport = self.args.mport
print('[~] Waiting on MAVLink')
self.m = mavutil.mavlink_connection(f'udpin:%s:%s' % (self.args.m, mport))
self.m = mavutil.mavlink_connection('udpin:%s:%s' % (self.args.m, mport))
self.m.wait_heartbeat(blocking = True)
print('[~] MAVLink established')

Expand Down

0 comments on commit a7d9333

Please sign in to comment.