Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Shun Fan committed Sep 18, 2015
1 parent a58d06d commit 5cbeba5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
1 change: 0 additions & 1 deletion storage/transfer_service/aws_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ def main(description, project_id, day, month, year, hours, minutes,
}
}

print(transfer_job)
result = storagetransfer.transferJobs().create(body=transfer_job).execute()
logging.info('Returned transferJob: %s', json.dumps(result, indent=4))
# [END main]
Expand Down
8 changes: 3 additions & 5 deletions storage/transfer_service/transfer_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,13 @@ def main(project_id, job_name):

if __name__ == '__main__':
parser = argparse.ArgumentParser(
description='Review the transfer operations associated with a transfer'
' job.')
description='Review the transfer operations associated with a '
'transfer job.')
parser.add_argument('project_id', help='Your Google Cloud project ID.')
parser.add_argument('job_name', help='Your job name.')

args = parser.parse_args()

main(
args.project_id,
args.job_name)
main(args.project_id, args.job_name)

# [END all]

0 comments on commit 5cbeba5

Please sign in to comment.