Return the `pathlib.Path` to a resource file provided by Matplotlib. ``*args`` specify a path relative to the base data path.
(*args)
| 624 | |
| 625 | |
| 626 | def _get_data_path(*args): |
| 627 | """ |
| 628 | Return the `pathlib.Path` to a resource file provided by Matplotlib. |
| 629 | |
| 630 | ``*args`` specify a path relative to the base data path. |
| 631 | """ |
| 632 | return Path(matplotlib.get_data_path(), *args) |
| 633 | |
| 634 | |
| 635 | def flatten(seq, scalarp=is_scalar_or_string): |
searching dependent graphs…