(self, qparams: "QParams")
| 86 | self.zero_point = zero_point |
| 87 | |
| 88 | def update(self, qparams: "QParams"): |
| 89 | for key in self.__slots__: |
| 90 | setattr(self, key, getattr(qparams, key)) |
| 91 | |
| 92 | def __eq__(self, other): |
| 93 | if len(self.__slots__) != len(other.__slots__): |
no outgoing calls
no test coverage detected