I'm having trouble understanding what "No newline at end of file" means exactly.
I've got
if __name__ == "__main__":
app.run(
host=os.environ.get("IP", "0.0.0.0"),
port=int(os.environ.get("PORT", "5000")),
debug=False)
The error is pointing to the last line
debug=False
Can someone help explain to me why I'm getting this invalid error and offer a solution to solve it. Thanks