Minor comment changes

This commit is contained in:
2019-10-10 01:38:33 +02:00
parent 53b8ca8b1e
commit bcac7bfc03

View File

@ -177,13 +177,13 @@ class FreeboxMoviePlanner:
def askForUserSelection(self):
for movie in self.movies:
print()
print(movie)
reply = input("Interested? (y)es/(N)o/(q)uit")
if reply.upper() == "Y":
movie.user_selected = True
elif reply.upper() == "Q":
break
print()
def findMoviesOnTMDB(self):
for movie in self.movies: