pylint: Unnecessary parens after '=' keyword

This patch removes unnecessary usage of parens on attributions.
This commit is contained in:
Rafael Guterres Jeffman
2023-07-12 18:42:57 -03:00
parent 63d0272385
commit 07c1a5ee61
4 changed files with 11 additions and 11 deletions

View File

@@ -1453,7 +1453,7 @@ def define_commands_for_present_state(module, zone_name, entry, res_find):
else:
# Create reverse records for existing records
for ipv in ['a', 'aaaa']:
record = ('%srecord' % ipv)
record = '%srecord' % ipv
if record in args and ('%s_extra_create_reverse' % ipv) in args:
cmds = create_reverse_ip_record(
module, zone_name, name, args[record])