Skip to content

Commit

Permalink
Remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Luigi311 committed Jun 14, 2022
1 parent c18f0a2 commit 7ef2986
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jellyfin.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def update_watched(self, watched_list, user_mapping=None, library_mapping=None,
user = user_other

user_id = None
for key, value in self.users.items():
for key in self.users.keys():
if user.lower() == key.lower():
user_id = self.users[key]
break
Expand Down

0 comments on commit 7ef2986

Please sign in to comment.