(self, *, client=None)
| 740 | return total_spectrum.copy() |
| 741 | |
| 742 | def get_total_count(self, *, client=None): |
| 743 | _, total_count = self._get_sum(client=client) |
| 744 | return total_count.copy() |
| 745 | |
| 746 | def get_total_spectrum_and_count(self, *, client=None): |
| 747 | total_spectrum, total_count = self._get_sum(client=client) |
no test coverage detected