From c3391be59ab122803c3449e179fb7b9389f52ac0 Mon Sep 17 00:00:00 2001 From: Danny Hermes Date: Fri, 10 Oct 2014 17:06:50 -0700 Subject: [PATCH] Remove TODO from gcloud.storage.bucket. Re-introduced in 2f930652860400831e9fc1f3ef2dbf7179fcce26 after being removed for #162 as part of the effort in #175. --- gcloud/storage/bucket.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gcloud/storage/bucket.py b/gcloud/storage/bucket.py index 6ac9addb9f87..046944082795 100644 --- a/gcloud/storage/bucket.py +++ b/gcloud/storage/bucket.py @@ -258,7 +258,6 @@ def upload_file(self, filename, key=None): return key.set_contents_from_filename(filename) def upload_file_object(self, fh, key=None): - # TODO: What do we do about overwriting data? """Shortcut method to upload a file object into this bucket. Use this method to quickly put a local file in Cloud Storage.