MCPcopy Index your code
hub / github.com/InstaPy/InstaPy / set_dont_include

Method set_dont_include

instapy/instapy.py:662–670  ·  view source on GitHub ↗

Defines which accounts should not be unfollowed

(self, friends: list = None)

Source from the content-addressed store, hash-verified

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

Callers 1

quickstart.pyFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected