Return the value of the specified key if it exists; otherwise, return the default value.
(self, key, default=None)
| 177 | """) |
| 178 | |
| 179 | def get(self, key, default=None): |
| 180 | """Return the value of the specified key if it exists; otherwise, return the default value.""" |
| 181 | return getattr(self, key, default) |
| 182 | |
| 183 | |
| 184 | def plt_settings(rcparams=None, backend='Agg'): |
no outgoing calls
no test coverage detected