@@ -68,7 +68,7 @@ def retrieve(
6868 if not stop_id :
6969 raise ValueError (f"Expected a non-empty value for `stop_id` but received { stop_id !r} " )
7070 return self ._get (
71- f"/api/where/arrival-and-departure-for-stop/stopID .json" ,
71+ f"/api/where/arrival-and-departure-for-stop/{ stop_id } .json" ,
7272 options = make_request_options (
7373 extra_headers = extra_headers ,
7474 extra_query = extra_query ,
@@ -123,7 +123,7 @@ def list(
123123 if not stop_id :
124124 raise ValueError (f"Expected a non-empty value for `stop_id` but received { stop_id !r} " )
125125 return self ._get (
126- f"/api/where/arrivals-and-departures-for-stop/stopID .json" ,
126+ f"/api/where/arrivals-and-departures-for-stop/{ stop_id } .json" ,
127127 options = make_request_options (
128128 extra_headers = extra_headers ,
129129 extra_query = extra_query ,
@@ -182,7 +182,7 @@ async def retrieve(
182182 if not stop_id :
183183 raise ValueError (f"Expected a non-empty value for `stop_id` but received { stop_id !r} " )
184184 return await self ._get (
185- f"/api/where/arrival-and-departure-for-stop/stopID .json" ,
185+ f"/api/where/arrival-and-departure-for-stop/{ stop_id } .json" ,
186186 options = make_request_options (
187187 extra_headers = extra_headers ,
188188 extra_query = extra_query ,
@@ -237,7 +237,7 @@ async def list(
237237 if not stop_id :
238238 raise ValueError (f"Expected a non-empty value for `stop_id` but received { stop_id !r} " )
239239 return await self ._get (
240- f"/api/where/arrivals-and-departures-for-stop/stopID .json" ,
240+ f"/api/where/arrivals-and-departures-for-stop/{ stop_id } .json" ,
241241 options = make_request_options (
242242 extra_headers = extra_headers ,
243243 extra_query = extra_query ,
0 commit comments