@@ -158,7 +158,9 @@ def test_add_list_update_remove_image_to_share_group(
158158 delete_target_id (target = "linodes" , id = create_image_id [0 ])
159159
160160
161- def test_try_add_member_use_invalid_token (create_share_group , monkeypatch : MonkeyPatch ):
161+ def test_try_add_member_use_invalid_token (
162+ create_share_group , monkeypatch : MonkeyPatch
163+ ):
162164 monkeypatch .setenv ("LINODE_CLI_API_VERSION" , "v4beta" )
163165 result = exec_failing_test_command (
164166 BASE_CMDS ["image-sharegroups" ]
@@ -181,7 +183,9 @@ def test_try_add_member_use_invalid_token(create_share_group, monkeypatch: Monke
181183 delete_target_id (target = "image-sharegroups" , id = create_share_group [0 ])
182184
183185
184- def test_list_members_for_invalid_token (create_share_group , monkeypatch : MonkeyPatch ):
186+ def test_list_members_for_invalid_token (
187+ create_share_group , monkeypatch : MonkeyPatch
188+ ):
185189 monkeypatch .setenv ("LINODE_CLI_API_VERSION" , "v4beta" )
186190 result = exec_test_command (
187191 BASE_CMDS ["image-sharegroups" ]
@@ -409,7 +413,9 @@ def test_get_details_about_all_the_users_tokens(monkeypatch: MonkeyPatch):
409413 assert_headers_in_lines (headers , lines )
410414
411415
412- def test_try_to_list_all_shared_images_for_invalid_token (monkeypatch : MonkeyPatch ):
416+ def test_try_to_list_all_shared_images_for_invalid_token (
417+ monkeypatch : MonkeyPatch ,
418+ ):
413419 monkeypatch .setenv ("LINODE_CLI_API_VERSION" , "v4beta" )
414420 result = exec_failing_test_command (
415421 BASE_CMDS ["image-sharegroups" ]
@@ -426,7 +432,9 @@ def test_try_to_list_all_shared_images_for_invalid_token(monkeypatch: MonkeyPatc
426432 assert "Not found" in result
427433
428434
429- def test_try_gets_details_about_your_share_group_for_invalid_token (monkeypatch : MonkeyPatch ):
435+ def test_try_gets_details_about_your_share_group_for_invalid_token (
436+ monkeypatch : MonkeyPatch ,
437+ ):
430438 monkeypatch .setenv ("LINODE_CLI_API_VERSION" , "v4beta" )
431439 result = exec_failing_test_command (
432440 BASE_CMDS ["image-sharegroups" ]
0 commit comments