Retrieves the cell.
(self, *labels)
| 282 | len(labels), name, description, *labels) |
| 283 | |
| 284 | def get_cell(self, *labels): |
| 285 | """Retrieves the cell.""" |
| 286 | return StringGaugeCell(super(StringGauge, self).get_cell(*labels)) |
| 287 | |
| 288 | |
| 289 | class BoolGaugeCell(object): |