Update TreeGrid documentation.

This commit is contained in:
Mike Auty
2019-03-29 11:49:10 +00:00
parent 5120860a60
commit 29aee0baff
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -144,7 +144,7 @@ class TreeGrid(object, metaclass = ABCMeta):
Args:
columns: A list of column tuples made up of (name, type).
generator: A generator that populates the tree/grid structure
generator: An iterable containing row for a tree grid, each row contains a indent level followed by the values for each column in order.
"""
@staticmethod
+1 -1
View File
@@ -149,7 +149,7 @@ class TreeGrid(interfaces.renderers.TreeGrid):
Args:
columns: A list of column tuples made up of (name, type).
generator: A generator that populates the tree/grid structure
generator: An iterable containing row for a tree grid, each row contains a indent level followed by the values for each column in order.
"""
self._populated = False
self._row_count = 0