Defines which accounts should not be unfollowed
(self, friends: list = None)
| 660 | return self |
| 661 | |
| 662 | def set_dont_include(self, friends: list = None): |
| 663 | """Defines which accounts should not be unfollowed""" |
| 664 | if self.aborting: |
| 665 | return self |
| 666 | |
| 667 | self.dont_include = set(friends) or set() |
| 668 | self.white_list = set(friends) or set() |
| 669 | |
| 670 | return self |
| 671 | |
| 672 | def set_switch_language(self, option: bool = True): |
| 673 | self.switch_language = option |