Skip to content

Commit ef43f2e

Browse files
Suresh MandalapuSuresh Mandalapu
authored andcommitted
linting fix
1 parent c6f3432 commit ef43f2e

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

cleancloud/doctor/gcp.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,12 @@ def run_gcp_doctor(project_id: Optional[str] = None) -> None:
537537
sa_hint = "<your-service-account>@<project>.iam.gserviceaccount.com"
538538
project_hint = probe_project_id or "<project-id>"
539539
info(" Example fix commands:")
540-
for role in ["roles/compute.viewer", "roles/cloudsql.viewer", "roles/monitoring.viewer", "roles/browser"]:
540+
for role in [
541+
"roles/compute.viewer",
542+
"roles/cloudsql.viewer",
543+
"roles/monitoring.viewer",
544+
"roles/browser",
545+
]:
541546
info(f" gcloud projects add-iam-policy-binding {project_hint} \\")
542547
info(f' --member="serviceAccount:{sa_hint}" \\')
543548
info(f' --role="{role}"')

0 commit comments

Comments
 (0)