Retrieves the cell.
(self, *labels)
| 131 | deleter(metric) |
| 132 | |
| 133 | def get_cell(self, *labels): |
| 134 | """Retrieves the cell.""" |
| 135 | if len(labels) != self._label_length: |
| 136 | raise ValueError('The {} expects taking {} labels'.format( |
| 137 | self._metric_name, self._label_length)) |
| 138 | return self._metric_methods[self._label_length].get_cell( |
| 139 | self._metric, *labels) |
| 140 | |
| 141 | |
| 142 | class CounterCell(object): |
no test coverage detected