Issue
When I type into python "import flask"
flask is imported with no problems.
But "from flask import flask"
it says
ImportError: cannot import name 'flask' from 'flask'.
Most tutorials use "from flask import flask"
, so should I be worried?
Solution
it will be
from flask import Flask
Answered By - aman kumar
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.