File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
src/traveltime_google_comparison Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 21
21
TRAVELTIME_API = "traveltime"
22
22
OPENROUTES_API = "openroutes"
23
23
24
- ALL_COMPETITORS = [
24
+ ALL_PROVIDERS = [
25
25
GOOGLE_API ,
26
26
TOMTOM_API ,
27
27
HERE_API ,
28
28
MAPBOX_API ,
29
29
OSRM_API ,
30
30
OPENROUTES_API ,
31
+ TRAVELTIME_API
31
32
]
32
33
33
34
Original file line number Diff line number Diff line change 15
15
GOOGLE_API ,
16
16
TRAVELTIME_API ,
17
17
TOMTOM_API ,
18
- ALL_COMPETITORS ,
18
+ ALL_PROVIDERS ,
19
19
)
20
20
from traveltime_google_comparison .requests import factory
21
21
@@ -32,7 +32,7 @@ async def run():
32
32
args = config .parse_args ()
33
33
34
34
# Get all providers that should be tested against TravelTime
35
- providers = [provider for provider in ALL_COMPETITORS if provider in args .providers ]
35
+ providers = [provider for provider in ALL_PROVIDERS if provider in args .providers ]
36
36
37
37
# TravelTime always should be in the analysis, unless in the future we decide to
38
38
# allow the user to control what is the base for comparison.
You can’t perform that action at this time.
0 commit comments