(self)
| 284 | |
| 285 | @property |
| 286 | def quant_map(self): |
| 287 | qs = self.__dict__.get("quant_state") |
| 288 | if qs is not None: |
| 289 | return qs.code |
| 290 | raise AttributeError(f"'{type(self).__name__}' object has no attribute 'quant_map'") |
| 291 | |
| 292 | @property |
| 293 | def offset(self): |
nothing calls this directly
no outgoing calls
no test coverage detected