Get a list of the valid values to pass into your call to change_look_and_feel :return: list of valid string values :rtype: List[str]
()
| 19640 | |
| 19641 | |
| 19642 | def list_of_look_and_feel_values(): |
| 19643 | """ |
| 19644 | Get a list of the valid values to pass into your call to change_look_and_feel |
| 19645 | |
| 19646 | :return: list of valid string values |
| 19647 | :rtype: List[str] |
| 19648 | """ |
| 19649 | |
| 19650 | return sorted(list(LOOK_AND_FEEL_TABLE.keys())) |
| 19651 | |
| 19652 | |
| 19653 | def theme(new_theme=None): |
no outgoing calls
no test coverage detected