From: Joerg Behrmann Date: Thu, 21 Sep 2023 10:25:01 +0000 (+0200) Subject: config: fix type of presets and dependencies X-Git-Tag: v18~13^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a94f1839c5255100e9d5ca1f097ef7c21bef26df;p=thirdparty%2Fmkosi.git 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) --- 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