cmd
Some checks failed
/ job (push) Failing after 8m15s

This commit is contained in:
Marc Beninca 2024-06-24 15:34:38 +02:00
parent e18bf4178f
commit 04af7ef182
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -11,6 +11,7 @@ from rwx import fs
from rwx.log import stream as log
import pidd
from pidd import cmd
from pidd.project import Project
from pidd.projects import Projects
@ -60,7 +61,7 @@ def main(main: str) -> None:
pidd.set_ssh(*arguments)
pidd.install_commands(main)
else:
function = getattr(pidd, name.replace("-", "_"))
function = getattr(cmd, name.replace("-", "_"))
function(*arguments)