Closed glensc closed 1 year ago
Tested successfully with plextraktsync 0.26.4 and liked_lists: true
👍
i recall i tested like this
diff --git a/trakt/users.py b/trakt/users.py
index 4a8b33e..14714c3 100644
--- a/trakt/users.py
+++ b/trakt/users.py
@@ -88,6 +88,7 @@ class UserList(DataClassMixin(UserListTuple), IdsMixin):
def __init__(self, ids=None, **kwargs):
super().__init__(**kwargs)
+ print(f"Created userlist: {self.data}")
self._ids = ids
self._items = list()
Replaces https://github.com/moogar0880/PyTrakt/pull/190
NOTE: there appears
Translation
being present inmovie.py
andtv.py
. and they are not even identical.NOTE: Can't have
NamedTuple
and__init__
, soUserList
stays asnamedtuple()
UPDATE: Copied
DataClassMixin
trick from: