report/generate_master_report.py [47:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def _upload_to_storage(src_file_path, storage_bucket, destination_dir):
  """Uploads the file from src_file_path to the specified location on Storage."""
  args = [
      "gsutil", "cp", src_file_path,
      "gs://{}/{}".format(storage_bucket, destination_dir)
  ]
  subprocess.run(args)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



report/generate_report.py [52:58]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
def _upload_to_storage(src_file_path, storage_bucket, destination_dir):
  """Uploads the file from src_file_path to the specified location on Storage."""
  args = [
      "gsutil", "cp", src_file_path,
      "gs://{}/{}".format(storage_bucket, destination_dir)
  ]
  subprocess.run(args)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



