Mark MatplotlibRenderer.set_layout as protected

pull/357/head
nyanpasu64 2018-08-14 23:57:07 -07:00
rodzic 596e9812c7
commit 961356bd3f
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -58,9 +58,9 @@ class MatplotlibRenderer:
self.axes: List['Axes'] = None # set by set_layout()
self.lines: List['Line2D'] = None # set by render_frame() first call
self.set_layout() # mutates self
self._set_layout() # mutates self
def set_layout(self) -> None:
def _set_layout(self) -> None:
"""
Creates a flat array of Matplotlib Axes, with the new layout.
Opens a window showing the Figure (and Axes).