From 7a6e1af492c4ae545b80569e9f5be41d2d5f6a4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jelmer=20Vernoo=C4=B3?= Date: Wed, 3 Mar 2021 00:31:46 +0000 Subject: [PATCH] Fix typing. --- ognibuild/debian/apt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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