Hey all, I'm brand new to Pythonanywhere and I've been learning Flask through a Treehouse course. In that course, the instructor uses Peewee as the ORM and it's the one I've gotten comfortable with.
Unfortunately, I can't get Peewee to import properly. As per Peewee documentation the proper method to import is:
from Peewee import *
But when using this line, I get this as a warning in the margins:
'from Peewee import *' used; unable to detect undefined names' error.
I haven't had this issue working off of Treehouse's workspaces or locally on a PyCharm project. Googling this issue hasn't yielded any results and I'm not sure what else might be causing it. For reference, I'm running a project here on Python 3.5.
Any help would be much appreciated. Thanks!