(self)
| 330 | |
| 331 | @property |
| 332 | def _params(self): |
| 333 | ps = self._fn_params |
| 334 | for k, p in self._transform.params.items(): |
| 335 | if k == 'ax' or p in ps: |
| 336 | continue |
| 337 | ps.append(p) |
| 338 | return ps |
| 339 | |
| 340 | def _setup_invalidations(self, depth=0): |
| 341 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected