File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ def retrieve(
5454 if not route_id :
5555 raise ValueError (f"Expected a non-empty value for `route_id` but received { route_id !r} " )
5656 return self ._get (
57- f"/api/where/route/routeID .json" ,
57+ f"/api/where/route/{ route_id } .json" ,
5858 options = make_request_options (
5959 extra_headers = extra_headers , extra_query = extra_query , extra_body = extra_body , timeout = timeout
6060 ),
@@ -97,7 +97,7 @@ async def retrieve(
9797 if not route_id :
9898 raise ValueError (f"Expected a non-empty value for `route_id` but received { route_id !r} " )
9999 return await self ._get (
100- f"/api/where/route/routeID .json" ,
100+ f"/api/where/route/{ route_id } .json" ,
101101 options = make_request_options (
102102 extra_headers = extra_headers , extra_query = extra_query , extra_body = extra_body , timeout = timeout
103103 ),
You can’t perform that action at this time.
0 commit comments