(self)
| 333 | |
| 334 | @property |
| 335 | def nested_offset(self): |
| 336 | qs = self.__dict__.get("quant_state") |
| 337 | if qs is not None: |
| 338 | return qs.offset |
| 339 | raise AttributeError(f"'{type(self).__name__}' object has no attribute 'nested_offset'") |
| 340 | |
| 341 | def __deepcopy__(self, memo): |
| 342 | new_instance = type(self).__new__(type(self)) |
nothing calls this directly
no outgoing calls
no test coverage detected