From dae1323a8156e8d2a2cd1d7c8913d500ce8a7d8c Mon Sep 17 00:00:00 2001 From: marxzuckerburg Date: Sun, 4 Oct 2020 09:38:37 +0100 Subject: [PATCH] winfix? --- comrad/cli/__init__.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/comrad/cli/__init__.py b/comrad/cli/__init__.py index 1ad9e39..234ca73 100644 --- a/comrad/cli/__init__.py +++ b/comrad/cli/__init__.py @@ -1,3 +1,6 @@ from .artcode import * -from .tab_completer import * +try: + from .tab_completer import * +except ModuleNotFoundError: + pass from .cli import * \ No newline at end of file