(self, child)
| 1784 | return key |
| 1785 | |
| 1786 | def remove_child(self, child): |
| 1787 | if 'grid-area' in child.style.keys(): |
| 1788 | del child.style['grid-area'] |
| 1789 | super(GridBox, self).remove_child(child) |
| 1790 | |
| 1791 | def set_column_sizes(self, values): |
| 1792 | """Sets the size value for each column |
nothing calls this directly
no test coverage detected