(self, *args, **kwargs)
| 119 | return self.predict_return |
| 120 | |
| 121 | def predict_proba(self, *args, **kwargs): |
| 122 | if not self.fitted: |
| 123 | raise NotFittedError |
| 124 | |
| 125 | return self.predict_proba_return |
| 126 | |
| 127 | def vote(self, *args, **kwargs): |
| 128 | if not self.fitted: |
nothing calls this directly
no outgoing calls
no test coverage detected