From abdc993bdfdafaf535640e0bbb1b4819e3027dfb Mon Sep 17 00:00:00 2001 From: Adrian Rumpold Date: Tue, 15 Oct 2024 08:30:35 +0200 Subject: [PATCH] fix(client): Fix jobs_execute script definition The script was still using the `jobs.execute` module (old spelling). --- client/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/pyproject.toml b/client/pyproject.toml index d3f2a5a..24a07df 100644 --- a/client/pyproject.toml +++ b/client/pyproject.toml @@ -20,7 +20,7 @@ dynamic = ["version"] license = { text = "Apache-2.0" } [project.scripts] -jobs_execute = "jobs.execute:execute" +jobs_execute = "jobq.execute:execute" jobq = "cli:main" [project.optional-dependencies]