From fff06b88ad9055e4d32247c1eafce3981d05b485 Mon Sep 17 00:00:00 2001 From: DongHun Kwak Date: Wed, 27 Mar 2024 14:59:52 +0900 Subject: [PATCH] Add '*' variant signature at gdbus-codegen Change-Id: I3a6da6468cc5618b65fa6e7370de25fa539bedf9 --- gio/gdbus-2.0/codegen/dbustypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/gdbus-2.0/codegen/dbustypes.py b/gio/gdbus-2.0/codegen/dbustypes.py index e16ea52..e9e6998 100644 --- a/gio/gdbus-2.0/codegen/dbustypes.py +++ b/gio/gdbus-2.0/codegen/dbustypes.py @@ -72,7 +72,7 @@ def variant_check_signature(signature: str): if len(signature) > 255: print_error("D-Bus maximum signature length of 255 exceeded.") for s in signature: - if s not in "ybnqiuxthdvasog(){}": + if s not in "ybnqiuxthdvasog(){}*": print_error( f'Bad signature "{signature}". "{s}" is not a valid D-Bus type.' ) -- 2.7.4