diff --git a/streaming-check/movie_check.py b/movie-check/movie_check.py similarity index 97% rename from streaming-check/movie_check.py rename to movie-check/movie_check.py index ce2f3c0..26ea96e 100644 --- a/streaming-check/movie_check.py +++ b/movie-check/movie_check.py @@ -111,7 +111,8 @@ def main(): args = get_args() movie = input("Enter a movie: ") - movie_id, movie_title, movie_release, movie_rating = tmdb_lookup(tmdb_url, tmdb_headers, movie, args) + movie_id, movie_title, movie_release, movie_rating = tmdb_lookup( + tmdb_url, tmdb_headers, movie, args) print(movie_title + f" ({movie_release.year})") print(f"Rating: {movie_rating}\n")