(self, *args, **kwargs)
| 125 | return self.predict_proba_return |
| 126 | |
| 127 | def vote(self, *args, **kwargs): |
| 128 | if not self.fitted: |
| 129 | raise NotFittedError |
| 130 | |
| 131 | return self.vote_return |
| 132 | |
| 133 | def vote_proba(self, *args, **kwargs): |
| 134 | if not self.fitted: |
nothing calls this directly
no outgoing calls
no test coverage detected