(key, conv)
| 984 | |
| 985 | |
| 986 | def _convert_validator_spec(key, conv): |
| 987 | if isinstance(conv, list): |
| 988 | ignorecase = isinstance(conv, _ignorecase) |
| 989 | return ValidateInStrings(key, conv, ignorecase=ignorecase) |
| 990 | else: |
| 991 | return conv |
| 992 | |
| 993 | |
| 994 | # Mapping of rcParams to validators. |
no test coverage detected
searching dependent graphs…