From 287d813b516284c31b9304de365d50240b53a41e Mon Sep 17 00:00:00 2001 From: Sarmad Gulzar Date: Thu, 25 Nov 2021 00:38:14 +0500 Subject: [PATCH] Added return type for `bucket` function --- firebase_admin/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firebase_admin/storage.py b/firebase_admin/storage.py index 16f48e273..f3948371c 100644 --- a/firebase_admin/storage.py +++ b/firebase_admin/storage.py @@ -30,7 +30,7 @@ _STORAGE_ATTRIBUTE = '_storage' -def bucket(name=None, app=None): +def bucket(name=None, app=None) -> storage.Bucket: """Returns a handle to a Google Cloud Storage bucket. If the name argument is not provided, uses the 'storageBucket' option specified when