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