Hey all, getting an error with my python backend. ``` from supertokens_python.recipe import dashboa...
t
Hey all, getting an error with my python backend.
Copy code
from supertokens_python.recipe import dashboard
is returning
Copy code
Error: While importing 'app', an ImportError was raised:

Traceback (most recent call last):
  File "/PATH/venv/lib/python3.9/site-packages/flask/cli.py", line 218, in locate_app
    __import__(module_name)
  File "/PATH/app.py", line 7, in <module>
    from supertokens_python.recipe import dashboard
ImportError: cannot import name 'dashboard' from 'supertokens_python.recipe' (/PATH/venv/lib/python3.9/site-packages/supertokens_python/recipe/__init__.py)
Any ideas?
r
Hey @thatnerdjack
Which version of the backend SDK are you using?
you need to use a version >= 0.11.1
6 Views