Update style library with user-defined rc files.
(library)
| 189 | |
| 190 | |
| 191 | def _update_user_library(library): |
| 192 | """Update style library with user-defined rc files.""" |
| 193 | for stylelib_path in map(os.path.expanduser, USER_LIBRARY_PATHS): |
| 194 | styles = _read_style_directory(stylelib_path) |
| 195 | _update_nested_dict(library, styles) |
| 196 | return library |
| 197 | |
| 198 | |
| 199 | @_api.deprecated("3.11") |
no test coverage detected
searching dependent graphs…