Skip to content

Commit eb01d54

Browse files
committed
fix lint
Signed-off-by: Javan Lacerda <javanlacerda@google.com>
1 parent b58746d commit eb01d54

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/local/butler/deploy.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -236,11 +236,12 @@ def _deploy_zip(bucket_name, zip_path, test_deployment=False):
236236
else:
237237
common.execute('gsutil cp %s gs://%s/%s' % (zip_path, bucket_name,
238238
os.path.basename(zip_path)))
239-
239+
240240

241241
def _download_zip(bucket_name, gcs_file_path, target_path):
242242
"""Download zip from GCS."""
243-
common.execute('gsutil cp gs://%s/%s %s' % (bucket_name, gcs_file_path, target_path))
243+
common.execute(
244+
'gsutil cp gs://%s/%s %s' % (bucket_name, gcs_file_path, target_path))
244245

245246

246247
def _deploy_manifest(bucket_name,
@@ -628,7 +629,8 @@ def execute(args):
628629
config_path = os.path.join(config_dir, 'modules')
629630
bucket = config.get('deployment.bucket')
630631
_download_zip(bucket, "internal_issue_tracker.zip", config_path)
631-
common.execute(f'unzip {config_path}/internal_issue_tracker.zip -d {config_path}')
632+
common.execute(
633+
f'unzip {config_path}/internal_issue_tracker.zip -d {config_path}')
632634
common.execute(f'rm {config_path}/internal_issue_tracker.zip')
633635
environment.set_value("BOT_NAME", os.uname().nodename)
634636
_prod_deployment_helper(

0 commit comments

Comments
 (0)