Return the value of the specified key if it exists; otherwise, return the default value.
(self, key, default=None)
| 348 | ) |
| 349 | |
| 350 | def get(self, key, default=None): |
| 351 | """Return the value of the specified key if it exists; otherwise, return the default value.""" |
| 352 | return getattr(self, key, default) |
| 353 | |
| 354 | |
| 355 | def plt_settings(rcparams=None, backend="Agg"): |
no outgoing calls