Skip to content

Commit

Permalink
Add keep_watched property to TraktUserListCollection
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed Feb 24, 2024
1 parent e657e23 commit 5e695ec
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plextraktsync/trakt/TraktUserListCollection.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@


class TraktUserListCollection(UserList):
def __init__(self):
def __init__(self, keep_watched=True):
super().__init__()
self.keep_watched = keep_watched
self.logger = logging.getLogger("PlexTraktSync.TraktUserListCollection")

def add_to_lists(self, m: Media):
Expand Down

0 comments on commit 5e695ec

Please sign in to comment.