From 8177c0ae98fdfcc4cc6c35a8e9a8960ddeea3b0a Mon Sep 17 00:00:00 2001 From: Sheidan <37596668+Sh3idan@users.noreply.github.com> Date: Tue, 22 Jul 2025 21:47:44 +0200 Subject: [PATCH] Fix redundant args for 'value' and 'path' Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com> --- plugins/modules/dconf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/dconf.py b/plugins/modules/dconf.py index c1c4512dc4..be18f37d2c 100644 --- a/plugins/modules/dconf.py +++ b/plugins/modules/dconf.py @@ -480,8 +480,8 @@ def main(): state=dict(default='present', choices=['present', 'absent', 'read']), key=dict(required=True, type='str', no_log=False), # Converted to str below after special handling of bool. - value=dict(required=False, default=None, type='raw'), - path=dict(required=False, default=None, type='path'), + value=dict(type='raw'), + path=dict(type='path'), ), supports_check_mode=True, required_if=[