Skip to content

Commit

Permalink
Merge branch 'cleanup-args'
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed Oct 24, 2022
2 parents 9abe916 + bc77e26 commit f6875ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions trakt/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ def __init__(self, *args, **kwargs):
super().__init__()
self._items = list()

def __iter__(self, *args, **kwargs):
def __iter__(self):
"""Iterate over the items in this user list"""
return self._items.__iter__(*args, **kwargs)
return self._items.__iter__()

@classmethod
@post
Expand Down

0 comments on commit f6875ea

Please sign in to comment.