Construct a `RcParams` instance from the default Matplotlib rc file.
(fail_on_error=False)
| 845 | |
| 846 | |
| 847 | def rc_params(fail_on_error=False): |
| 848 | """Construct a `RcParams` instance from the default Matplotlib rc file.""" |
| 849 | return rc_params_from_file(matplotlib_fname(), fail_on_error) |
| 850 | |
| 851 | |
| 852 | @functools.cache |
nothing calls this directly
no test coverage detected
searching dependent graphs…