File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -199,18 +199,23 @@ def __init__(self, config_values):
199
199
self ._config_values = config_values # dictionary of param key to values
200
200
201
201
def get_boolean (self , key ):
202
+ """Returns the value as a boolean."""
202
203
return self ._get_value (key ).as_boolean ()
203
204
204
205
def get_string (self , key ):
206
+ """Returns the value as a string."""
205
207
return self ._get_value (key ).as_string ()
206
208
207
209
def get_int (self , key ):
210
+ """Returns the value as an integer."""
208
211
return self ._get_value (key ).as_int ()
209
212
210
213
def get_float (self , key ):
214
+ """Returns the value as a float."""
211
215
return self ._get_value (key ).as_float ()
212
216
213
217
def get_value_source (self , key ):
218
+ """Returns the source of the value."""
214
219
return self ._get_value (key ).get_source ()
215
220
216
221
def _get_value (self , key ):
You can’t perform that action at this time.
0 commit comments