(self, norm)
| 1184 | pass |
| 1185 | |
| 1186 | def set_norm(self, norm): |
| 1187 | if self._A is not None: |
| 1188 | raise RuntimeError('Cannot change colors after loading data') |
| 1189 | super().set_norm(norm) |
| 1190 | |
| 1191 | def set_cmap(self, cmap): |
| 1192 | if self._A is not None: |
no outgoing calls