From 7c29cdb8831dd803e188848c08e3e163c5d50b55 Mon Sep 17 00:00:00 2001 From: nickedyer Date: Sun, 19 Feb 2023 14:34:13 -0500 Subject: [PATCH] changed __main__.py --- colors/__main__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/colors/__main__.py b/colors/__main__.py index 41084f3..be45519 100644 --- a/colors/__main__.py +++ b/colors/__main__.py @@ -1,5 +1,5 @@ -import colors.main +from colors.main import main as start if __name__ == '__main__': - colors.main.main() + start() exit() \ No newline at end of file