diff --git a/src/ohmyapi/cli.py b/src/ohmyapi/cli.py index eb8df12..38d8fcc 100644 --- a/src/ohmyapi/cli.py +++ b/src/ohmyapi/cli.py @@ -49,7 +49,6 @@ def shell(root: str = "."): from IPython import start_ipython shell_vars = { "p": project, - "asyncio": asyncio, } from traitlets.config.loader import Config c = Config() @@ -104,6 +103,7 @@ def createsuperuser(root: str = "."): print("Auth app not installed! Please add 'ohmyapi_auth' to your INSTALLED_APPS.") return + import asyncio import ohmyapi_auth email = input("E-Mail: ") username = input("Username: ")