Skip to content

Commit 1b0ff27

Browse files
committed
lint fix
1 parent 9d7658e commit 1b0ff27

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

securitycenter/snippets_management_api/security_health_analytics_custom_module_test.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
# limitations under the License.
1616
import os
1717

18-
import backoff
19-
2018
import random
2119

22-
from google.api_core.exceptions import InternalServerError, NotFound, ServiceUnavailable
20+
import backoff
2321

2422
import time
2523

24+
from google.api_core.exceptions import InternalServerError, NotFound, ServiceUnavailable
25+
2626
from google.cloud import securitycentermanagement_v1
2727

2828
import pytest
@@ -54,8 +54,7 @@ def cleanup_existing_custom_modules(org_id: str):
5454
"""
5555
client = securitycentermanagement_v1.SecurityCenterManagementClient()
5656
parent = f"organizations/{org_id}/locations/global"
57-
print(f"Parent path: {parent}")
58-
57+
print(f"Parent path: {parent}")
5958
try:
6059
custom_modules = client.list_security_health_analytics_custom_modules(
6160
request={"parent": parent}

0 commit comments

Comments
 (0)