From aab2a012a539f4e31e8fdef91dfc8606308f2ec0 Mon Sep 17 00:00:00 2001 From: Nicolas van Kempen Date: Mon, 19 Feb 2024 15:45:27 -0500 Subject: [PATCH] Fix functionality regression --- src/chatdbg/__main__.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/chatdbg/__main__.py b/src/chatdbg/__main__.py index 8e7f25e..b7c50ab 100644 --- a/src/chatdbg/__main__.py +++ b/src/chatdbg/__main__.py @@ -2,12 +2,6 @@ import pathlib import sys -the_path = pathlib.Path(__file__).parent.resolve() +from . import chatdbg -sys.path.insert(0, os.path.abspath(the_path)) - -from .chatdbg import * - -# from . import chatdbg - -# chatdbg.main() +chatdbg.main()