From 2397454b6c5ba0c0519d05b30f5e6b790dbfeafc Mon Sep 17 00:00:00 2001 From: Alberto Miranda Date: Fri, 20 May 2022 18:05:23 +0200 Subject: [PATCH] Fix invalid `initializer_list` in `declare_group` --- genopts/genopts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/genopts/genopts.py b/genopts/genopts.py index bda4a5b..3b02f5f 100755 --- a/genopts/genopts.py +++ b/genopts/genopts.py @@ -401,9 +401,9 @@ class Section: declare_section( {keyword}, sec_type::{required}, - declare_group( + declare_group({{ {options} - ) + }}) ) """ -- GitLab