(gui: str | None)
| 503 | # Always use the appropriate one of these conversion functions when passing a |
| 504 | # gui framework name to/from Matplotlib. |
| 505 | def _convert_gui_to_matplotlib(gui: str | None) -> str | None: |
| 506 | if gui and gui.lower() == "osx": |
| 507 | return "macosx" |
| 508 | return gui |
| 509 | |
| 510 | |
| 511 | def _convert_gui_from_matplotlib(gui: str | None) -> str | None: |
no outgoing calls
no test coverage detected
searching dependent graphs…