From 84e48631d41cab2a6c6be895d36d0a48c07de266 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 4 Aug 2016 15:02:54 +0200 Subject: [PATCH] Document return type --- pillar/application/utils/gcs.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pillar/application/utils/gcs.py b/pillar/application/utils/gcs.py index 54452429..058f225d 100644 --- a/pillar/application/utils/gcs.py +++ b/pillar/application/utils/gcs.py @@ -16,6 +16,8 @@ def get_client(): """Stores the GCS client on the global Flask object. The GCS client is not user-specific anyway. + + :rtype: Client """ _gcs = getattr(g, '_gcs_client', None)