diff --git a/trakt/users.py b/trakt/users.py index 523b83d3..27e45e4d 100644 --- a/trakt/users.py +++ b/trakt/users.py @@ -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. @@ -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