Add single vote per item to self.votes. Parameter can be any iterable.
(self, votes)
| 2833 | ) |
| 2834 | |
| 2835 | def add_votes(self, votes): |
| 2836 | """ |
| 2837 | Add single vote per item to self.votes. Parameter can be any |
| 2838 | iterable. |
| 2839 | """ |
| 2840 | self.votes.update(votes) |
| 2841 | |
| 2842 | def update_join_types(self, query): |
| 2843 | """ |