You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Python 3: define basestring, use bytes.decode() (#705)
* Run flake8 tests against both Python 2 and 3
* Python 3: from past.builtins import basestring
* Python 3: from __future__ import print_function
* Update simple_goto.py
* flake8 --max-line-length=127
* Python 3: from __future__ import print_function
* Separate flak8 run just for syntax errors
A CherryPy based web application that displays a mapbox map to let you view the current vehicle position and send the vehicle commands to fly to a particular latitude and longitude.
9
9
10
10
Full documentation is provided at http://python.dronekit.io/examples/drone_delivery.html
parser=argparse.ArgumentParser(description='Creates a CherryPy based web application that displays a mapbox map to let you view the current vehicle position and send the vehicle commands to fly to a particular latitude and longitude. Will start and connect to SITL if no connection string specified.')
25
-
parser.add_argument('--connect',
26
-
help="vehicle connection target string. If not specified, SITL is automatically started and used.")
25
+
parser.add_argument('--connect',
26
+
help="vehicle connection target string. If not specified, SITL is automatically started and used.")
0 commit comments