feat: change command to run_crew

This commit is contained in:
Eduardo Chiarotti
2024-08-06 21:11:49 -03:00
parent 27874bac14
commit 3a3b19c792

View File

@@ -7,7 +7,7 @@ def run_crew() -> None:
""" """
Run the crew by running a command in the Poetry environment. Run the crew by running a command in the Poetry environment.
""" """
command = ["poetry", "run"] command = ["poetry", "run", "run_crew"]
try: try:
result = subprocess.run(command, capture_output=False, text=True, check=True) result = subprocess.run(command, capture_output=False, text=True, check=True)