From 01a3302911c8f5eb18782c03d6eb211996304835 Mon Sep 17 00:00:00 2001 From: Ray Lyon Date: Mon, 28 Mar 2022 19:20:52 -0400 Subject: [PATCH] rename dir --- {streaming-check => movie-check}/movie_check.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename {streaming-check => movie-check}/movie_check.py (97%) 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")