`== None` -> `is None`

This commit is contained in:
Odd Stråbø 2020-07-23 23:48:54 +02:00 committed by GitHub
parent 92b4fe80cc
commit 768efccda2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ class Library(threading.Thread):
# Get list of updates from server for synced library types and populate work queues # Get list of updates from server for synced library types and populate work queues
result = self.server.jellyfin.get_sync_queue(last_sync, ",".join([ x for x in query_filter ])) result = self.server.jellyfin.get_sync_queue(last_sync, ",".join([ x for x in query_filter ]))
if result == None: if result is None:
return True return True
updated = [] updated = []