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):
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 ):
You can’t perform that action at this time.
0 commit comments