bugfix: add tests to key_for_set_value
This commit is contained in:
		
							parent
							
								
									f043401cc0
								
							
						
					
					
						commit
						fb32d5e0c5
					
				| @ -635,13 +635,19 @@ def is_iterable(obj): | |||||||
| def key_for_set_value(d): | def key_for_set_value(d): | ||||||
|     """ |     """ | ||||||
|     takes a dictionary and returns the first key for which's value the |     takes a dictionary and returns the first key for which's value the | ||||||
|     boolean is True |     boolean representation is True | ||||||
|     :param d: dictionary containing values |     :param d: dictionary containing values | ||||||
|     :type d: dict |     :type d: dict | ||||||
|     :return: key to the first non-False value found; None if no value's |     :return: key to the first non-False value found; None if no value's | ||||||
|     boolean equals True |     boolean equals True | ||||||
|     :rtype: |     :rtype: bool or NoneType | ||||||
|  | 
 | ||||||
|  |     >>> key_for_set_value({'one': 0, 'two': 1}) | ||||||
|  |     'two' | ||||||
|  |     >>> print(key_for_set_value({1: 0, 2: False})) | ||||||
|  |     None | ||||||
|     """ |     """ | ||||||
|  |     assert type(d) is dict, "Function only defined for inputs of type 'dict'." | ||||||
|     r = None |     r = None | ||||||
|     for k, v in d.items(): |     for k, v in d.items(): | ||||||
|         if v: |         if v: | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user