We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, thank you for your work in this repo. I just saw a little flaw in your example codes for day 29. You're not importing the os module for this line:
port = int(os.environ.get("PORT", 5000))
Adding the following line at the top would fix it:
import os
I know it's just sample code but I wanted to inform you anyways.
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
No branches or pull requests
Hi, thank you for your work in this repo.
I just saw a little flaw in your example codes for day 29. You're not importing the os module for this line:
Adding the following line at the top would fix it:
I know it's just sample code but I wanted to inform you anyways.
The text was updated successfully, but these errors were encountered: