[python/matplotlib] Validate the plot parameters

This commit is contained in:
Romain Goyet
2020-03-11 10:36:38 -04:00
committed by Émilie Feral
parent 6a796f5f7c
commit 6f3d3f62de
3 changed files with 14 additions and 7 deletions

View File

@@ -35,7 +35,7 @@ public:
void setGrid(bool grid) { m_grid = grid; }
bool grid() { return m_grid; }
private:
mp_obj_t m_dots;
mp_obj_t m_dots; // A list of (x,y), where x and y are lists of numbers
bool m_grid;
/*