-
Notifications
You must be signed in to change notification settings - Fork 12
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.
Após as resoluções dos conflitos apontados pelo GitHub e de espaçamento descrito nos comentários abaixo, este PR poderá ser aprovado.
main.py
Outdated
port = os.getenv('PORT', '5000') | ||
if __name__ == "__main__": | ||
app.run(host='0.0.0.0', port=int(port)) | ||
app.run(host='0.0.0.0', port=int(port)) |
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.
Para evitar que o flake8
acuse um erro, por favor, adicione uma nova linha em branco no final de main.py
.
src/math_services.py
Outdated
subtracted_list = [x - integer_value for x in integer_list] | ||
integer_list.clear() | ||
integer_list.extend(subtracted_list) | ||
return integer_list |
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.
Para evitar que o flake8
acuse um erro, por favor, adicione uma nova linha em branco no final de src/math_services.py
.
test/math_test.py
Outdated
assert ms.subtract_list([1], 0) == [1] | ||
assert ms.subtract_list([1], 1) == [0] | ||
assert ms.subtract_list([1, 2], 1) == [0, 1] | ||
assert ms.subtract_list([1, 2, 3], 1) == [0, 1, 2] |
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.
Para evitar que o flake8
acuse um erro, por favor, adicione uma nova linha em branco no final de test/math_test.py
.
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.
@Albertomendonca Após as resoluções dos conflitos apontados pelo GitHub este PR poderá ser aprovado.
Summary
Checklist
requirements.txt
.external
.external
.Related Issue
Closes #19
Notes to Reviewer
...