From 485ddc01fb2af0d50c293c88d1f5ee97ad3efc1e Mon Sep 17 00:00:00 2001 From: Brian Wiborg Date: Sat, 27 Sep 2025 17:12:32 +0200 Subject: [PATCH] =?UTF-8?q?Revert=20"=F0=9F=8E=A8=20Make=20asyncio=20avail?= =?UTF-8?q?able=20in=20shell=20automatically"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit 0ec26895c04f42ef6f38ea19e38b37bbebffef09. --- src/ohmyapi/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: ")