Fix path and value are mutually exclusive

This commit is contained in:
sheidan 2025-07-19 07:32:59 -04:00
commit 84df105a3d

View file

@ -481,6 +481,9 @@ def main():
('state', 'present', ['value']),
('state', 'load', ['path']),
],
mutually_exclusive=[
['value', 'path']
],
)
if Variant is None: