File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -174,7 +174,11 @@ def test__terminal_response_after_retry_pipeline__clears_saved_retry_state(self)
174174 response .url = "https://example.com/upload"
175175 template = _RetryableMultipartRequestTemplate ()
176176 composite = CompositeRequestTemplate (
177- [template , _StaticTransitionTemplate (), _RetryableMultipartCleanupTemplate (template )]
177+ [
178+ template ,
179+ _StaticTransitionTemplate (),
180+ _RetryableMultipartCleanupTemplate (template ),
181+ ]
178182 )
179183
180184 template .before_request (request )
@@ -230,7 +234,11 @@ def test__terminal_exception_after_retry_pipeline__clears_saved_retry_state(self
230234 exception = RuntimeError ("boom" )
231235 template = _RetryableMultipartRequestTemplate ()
232236 composite = CompositeRequestTemplate (
233- [template , _StaticTransitionTemplate (), _RetryableMultipartCleanupTemplate (template )]
237+ [
238+ template ,
239+ _StaticTransitionTemplate (),
240+ _RetryableMultipartCleanupTemplate (template ),
241+ ]
234242 )
235243
236244 template .before_request (request )
Original file line number Diff line number Diff line change @@ -345,7 +345,9 @@ def test__update_notebook_metadata_after_rate_limit_retry__update_notebook_metad
345345 f"{ BASE_URL } /ninotebook/v1/notebook/{ notebook .id } " ,
346346 status = 429 ,
347347 )
348- request_mock .add_passthru (f"{ BASE_URL } /ninotebook/v1/notebook/{ notebook .id } " )
348+ request_mock .add_passthru (
349+ f"{ BASE_URL } /ninotebook/v1/notebook/{ notebook .id } "
350+ )
349351
350352 response = client .update_notebook (id = notebook .id , metadata = notebook )
351353
You can’t perform that action at this time.
0 commit comments