Is this the quickest route to add items to userlist?
from trakt.users import User, UserList
random_list: UserList = User("xxx").get_list("yyy")
random_list.add_items(....)
If yes, then why it takes so long to load UserList (random_list: UserList = User("xxx").get_list("yyy"))? Could it be that on init somewhere it tries to populate items of the list even though I'm not calling .get_items() method anywhere?