(self)
| 277 | |
| 278 | @property |
| 279 | def code(self): |
| 280 | qs = self.__dict__.get("quant_state") |
| 281 | if qs is not None: |
| 282 | return qs.code |
| 283 | raise AttributeError(f"'{type(self).__name__}' object has no attribute 'code'") |
| 284 | |
| 285 | @property |
| 286 | def quant_map(self): |
nothing calls this directly
no outgoing calls
no test coverage detected