From e306971534f4fee794356db5d08d18d52a484fdc Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Fri, 13 Sep 2024 15:45:17 +0200 Subject: [PATCH] lint/cmd --- rwx/cmd/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rwx/cmd/__init__.py b/rwx/cmd/__init__.py index de764fa..e3b75bc 100644 --- a/rwx/cmd/__init__.py +++ b/rwx/cmd/__init__.py @@ -1,8 +1,11 @@ +"""Handle system commands & packages.""" + commands: list[str] = [] packages: list[str] = [] def need(command: str) -> None: + """Assert package dependency for a command.""" match command: case "debootstrap": package = "debootstrap"