From cd1d790659fc054816fc00d3902f1d80b286f5c6 Mon Sep 17 00:00:00 2001 From: Dustin Carlino Date: Wed, 14 Oct 2020 10:49:24 -0500 Subject: [PATCH] And fix the headless example scripts to not pass an argument to headless, woops --- headless/examples/go_client.go | 2 +- headless/examples/python_client.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/headless/examples/go_client.go b/headless/examples/go_client.go index 9d787b1449..f0a757f0d4 100644 --- a/headless/examples/go_client.go +++ b/headless/examples/go_client.go @@ -5,7 +5,7 @@ how many trips need to be cancelled to substantially speed up remaining ones. Before running this script, start the API server: -> cargo run --release --bin headless -- --port=1234 data/system/scenarios/montlake/weekday.bin +> cargo run --release --bin headless -- --port=1234 */ package main diff --git a/headless/examples/python_client.py b/headless/examples/python_client.py index 84dd9b3b80..87bbef8e69 100755 --- a/headless/examples/python_client.py +++ b/headless/examples/python_client.py @@ -2,7 +2,7 @@ # This example will see how changing one traffic signal affects trip times. # Before running this script, start the API server: # -# > cargo run --release --bin headless -- --port=1234 data/system/scenarios/montlake/weekday.bin +# > cargo run --release --bin headless -- --port=1234 import json # You may need to install https://requests.readthedocs.io