diff --git a/ognibuild/debian/apt.py b/ognibuild/debian/apt.py index 405194f..c2eaf95 100644 --- a/ognibuild/debian/apt.py +++ b/ognibuild/debian/apt.py @@ -103,7 +103,7 @@ class AptManager(object): def satisfy(self, deps: List[str]) -> None: run_apt(self.session, ["satisfy"] + deps) - def satisfy_command(self, deps: List[str]) -> str: + def satisfy_command(self, deps: List[str]) -> List[str]: return ["apt", "satisfy"] + deps