From a94f1839c5255100e9d5ca1f097ef7c21bef26df Mon Sep 17 00:00:00 2001 From: Joerg Behrmann Date: Thu, 21 Sep 2023 12:25:01 +0200 Subject: [PATCH] config: fix type of presets and dependencies tuple[str] is a single element tuple, whereas tuple[str, ...] is a tuple of arbitrary length (with only str elements) --- mkosi/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mkosi/config.py b/mkosi/config.py index c3e46ecb3..2a3b516d9 100644 --- a/mkosi/config.py +++ b/mkosi/config.py @@ -679,8 +679,8 @@ class MkosiConfig: """ include: tuple[str, ...] - presets: tuple[str] - dependencies: tuple[str] + presets: tuple[str, ...] + dependencies: tuple[str, ...] distribution: Distribution release: str -- 2.47.3