diff --git a/plexapi/video.py b/plexapi/video.py index 245ec57d..4e658fc5 100644 --- a/plexapi/video.py +++ b/plexapi/video.py @@ -44,10 +44,7 @@ class Video(PlexPartialObject): @property def isWatched(self): """ Returns True if this video is watched. """ - if not self.viewCount: - return False - else: - return bool(self.viewCount > 0) + return bool(self.viewCount > 0) if self.viewCount else False @property def thumbUrl(self):