Skip to content

Commit 67ef909

Browse files
author
Pijush Chakraborty
committed
Updating docstrings
1 parent b6766d8 commit 67ef909

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

firebase_admin/remote_config.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,18 +199,23 @@ def __init__(self, config_values):
199199
self._config_values = config_values # dictionary of param key to values
200200

201201
def get_boolean(self, key):
202+
"""Returns the value as a boolean."""
202203
return self._get_value(key).as_boolean()
203204

204205
def get_string(self, key):
206+
"""Returns the value as a string."""
205207
return self._get_value(key).as_string()
206208

207209
def get_int(self, key):
210+
"""Returns the value as an integer."""
208211
return self._get_value(key).as_int()
209212

210213
def get_float(self, key):
214+
"""Returns the value as a float."""
211215
return self._get_value(key).as_float()
212216

213217
def get_value_source(self, key):
218+
"""Returns the source of the value."""
214219
return self._get_value(key).get_source()
215220

216221
def _get_value(self, key):

0 commit comments

Comments
 (0)