aboutsummaryrefslogtreecommitdiffstats
path: root/run/tool.py
diff options
context:
space:
mode:
authorsigoden <sigoden@gmail.com>2024-06-06 08:29:00 +0800
committerGitHub <noreply@github.com>2024-06-06 08:29:00 +0800
commitbfb7d75fe47ea588495c5be8157a67b1fec67a13 (patch)
treeb1996472711a1ccae391f1bded61adf3475b89ed /run/tool.py
parent005d23030dab2b7708996e779dc78dd5f8ebdb8d (diff)
downloadllm-functions-docker-bfb7d75fe47ea588495c5be8157a67b1fec67a13.tar.gz
refactor: move tools/$lang/** to tools/** (#17)
Diffstat (limited to 'run/tool.py')
-rwxr-xr-xrun/tool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run/tool.py b/run/tool.py
index 0555363..99163d3 100755
--- a/run/tool.py
+++ b/run/tool.py
@@ -23,7 +23,7 @@ def parse_argv():
def load_func(func_file):
base_dir = os.path.dirname(os.path.abspath(__file__))
- func_path = os.path.join(base_dir, f"../tools/py/{func_file}")
+ func_path = os.path.join(base_dir, f"../tools/{func_file}")
if os.path.exists(func_path):
spec = importlib.util.spec_from_file_location(func_file, func_path)
module = importlib.util.module_from_spec(spec)