Skip to content

Commit 5cbeba5

Browse files
author
Shun Fan
committed
Fix formatting
1 parent a58d06d commit 5cbeba5

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

storage/transfer_service/aws_request.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ def main(description, project_id, day, month, year, hours, minutes,
6868
}
6969
}
7070

71-
print(transfer_job)
7271
result = storagetransfer.transferJobs().create(body=transfer_job).execute()
7372
logging.info('Returned transferJob: %s', json.dumps(result, indent=4))
7473
# [END main]

storage/transfer_service/transfer_check.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,13 @@ def main(project_id, job_name):
4444

4545
if __name__ == '__main__':
4646
parser = argparse.ArgumentParser(
47-
description='Review the transfer operations associated with a transfer'
48-
' job.')
47+
description='Review the transfer operations associated with a '
48+
'transfer job.')
4949
parser.add_argument('project_id', help='Your Google Cloud project ID.')
5050
parser.add_argument('job_name', help='Your job name.')
5151

5252
args = parser.parse_args()
5353

54-
main(
55-
args.project_id,
56-
args.job_name)
54+
main(args.project_id, args.job_name)
5755

5856
# [END all]

0 commit comments

Comments
 (0)