Skip to content

Commit

Permalink
Initialize Movie.trakt property with None (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc authored Nov 30, 2022
2 parents 6589e47 + fe8d333 commit ac47b56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion trakt/movies.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def __init__(self, title, year=None, slug=None, **kwargs):
self.slug = slug or slugify(self.title)

self.released = self.tmdb_id = self.imdb_id = self.duration = None
self.trakt_id = self.tagline = self.overview = self.runtime = None
self.trakt = self.trakt_id = self.tagline = self.overview = self.runtime = None
self.updated_at = self.trailer = self.homepage = self.rating = None
self.votes = self.language = self.available_translations = None
self.genres = self.certification = None
Expand Down

0 comments on commit ac47b56

Please sign in to comment.