Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions trakt/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def create(cls, name, creator, description=None, privacy='private',

@classmethod
@get
def _get(cls, title, creator):
def get(cls, title, creator):
"""Returns a single custom :class:`UserList`

:param title: Name of the list.
Expand Down Expand Up @@ -494,5 +494,5 @@ def __str__(self):
__repr__ = __str__


# get decorator issue workaround - "It's a little hacky"
UserList.get = UserList._get
# @deprecated remove in 4.0
UserList._get = UserList.get