Skip to content

Commit

Permalink
fix for tmdb imports
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroquinc committed May 25, 2024
1 parent 14f4772 commit d0aeac1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion api/trakt/models/episode.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from src.tmdb.client import TMDb
from api.tmdb.client import TMDb

class Episode:
def __init__(self, data):
Expand Down
2 changes: 1 addition & 1 deletion api/trakt/models/movie.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from src.tmdb.client import TMDb
from api.tmdb.client import TMDb

class Movie:
def __init__(self, data):
Expand Down
2 changes: 1 addition & 1 deletion api/trakt/models/season.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from src.tmdb.client import TMDb
from api.tmdb.client import TMDb

class Season:
def __init__(self, data):
Expand Down
2 changes: 1 addition & 1 deletion api/trakt/models/show.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from src.tmdb.client import TMDb
from api.tmdb.client import TMDb

class Show:
def __init__(self, data):
Expand Down

0 comments on commit d0aeac1

Please sign in to comment.