Fix unnecessary usage of if.

This commit is contained in:
Rafael Guterres Jeffman
2021-04-29 19:57:48 -03:00
parent 2545f9702b
commit 61c6680fdc

View File

@@ -771,7 +771,7 @@ def main():
elif state == "absent":
if action == "service":
if res_find is not None:
args = {'continue': True if delete_continue else False}
args = {'continue': delete_continue}
commands.append([name, 'service_del', args])
elif action == "member":