diff options
author | Joseph Herlant <aerostitch@users.noreply.github.com> | 2018-06-04 23:26:27 -0700 |
---|---|---|
committer | jkoan <jkoan@users.noreply.github.com> | 2018-06-05 08:26:27 +0200 |
commit | fbb59e4739cd085706e0f045a0db53e3ec8bd695 (patch) | |
tree | 1f196ea55b0c8de2315d8ee694e47beb90063c61 /navit/binding/python/startup.py | |
parent | 3c5b0cdd39b2f65e4d51d887dc38da46a694799f (diff) | |
download | navit-fbb59e4739cd085706e0f045a0db53e3ec8bd695.tar.gz |
cleanup:python:cleanup python scripts (#622)
Diffstat (limited to 'navit/binding/python/startup.py')
-rw-r--r-- | navit/binding/python/startup.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/navit/binding/python/startup.py b/navit/binding/python/startup.py index f8e801551..272a78a2f 100644 --- a/navit/binding/python/startup.py +++ b/navit/binding/python/startup.py @@ -1,8 +1,8 @@ import navit navit.config_load("navit.xml.local") -pos=navit.pcoord("5023.7493 N 00730.2898 E",1); -dest=navit.pcoord("5023.6604 N 00729.8500 E",1); -inst=navit.config().navit(); -inst.set_position(pos); -inst.set_destination(dest,"Test"); -inst.set_center(pos); +pos=navit.pcoord("5023.7493 N 00730.2898 E",1) +dest=navit.pcoord("5023.6604 N 00729.8500 E",1) +inst=navit.config().navit() +inst.set_position(pos) +inst.set_destination(dest,"Test") +inst.set_center(pos) |