From 9cad70c1f97616db9663caa9652c0165410f3b82 Mon Sep 17 00:00:00 2001 From: Thomas Wilson Date: Thu, 21 May 2020 15:15:09 +0800 Subject: [PATCH] Fix entrypoint --- shepherd/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shepherd/__main__.py b/shepherd/__main__.py index 5e25588..ed7ca1d 100644 --- a/shepherd/__main__.py +++ b/shepherd/__main__.py @@ -1,3 +1,3 @@ if __name__ == '__main__': - from .agent.core import cli + from .agent.cli import cli cli()