-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Кошелев (3) #4
base: main
Are you sure you want to change the base?
Кошелев (3) #4
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Не нужно было закрывать предыдущий пулл-реквест, просто запушить новый код. Это так, замечание на будущее=)
tmdb.py
Outdated
|
||
def get_movie_actors(movie_id): | ||
if movie_id <= 0: | ||
raise InvalidParameterError |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Это правильнее задать валидатором в argparse. Функция не должна заботиться о том, что в скрипт передали некорректное значение.
К тому же, на такие значения API выдаст вполне конкретный ответ – 404, его и нужно показать пользователю
tmdb.py
Outdated
top_movies += get_popular_movies(page) | ||
|
||
result = [] | ||
for index, movie in enumerate(top_movies[:number]): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
У enumerate есть аргумент для старта, можно воспользоваться им, избавишься от одной из переменных
Внес правки и закоммитил |
Рефакторинг в соответствии с замечаниями