(dictionary, key1, key2, default_value=None)
| 853 | |
| 854 | @staticmethod |
| 855 | def safe_string_lower_2(dictionary, key1, key2, default_value=None): |
| 856 | value = Exchange.safe_string_2(dictionary, key1, key2, default_value) |
| 857 | return value.lower() if value is not None else value |
| 858 | |
| 859 | @staticmethod |
| 860 | def safe_string_upper_2(dictionary, key1, key2, default_value=None): |