Skip to content

Commit a3c90c4

Browse files
authored
Fixed whitespace sanity issue
1 parent 0714014 commit a3c90c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/modules/dcnm_vrf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2069,7 +2069,7 @@ def get_diff_replace(self):
20692069
for vrf in all_vrfs:
20702070
# If the playbook sets the deploy key to False, then we need to remove the vrf from the deploy list.
20712071
want_vrf_data = find_dict_in_list_by_key_value(search=self.config, key="vrf_name", value=vrf)
2072-
if want_vrf_data.get('deploy',True) is False:
2072+
if want_vrf_data.get('deploy', True) is False:
20732073
modified_all_vrfs.remove(vrf)
20742074

20752075
if modified_all_vrfs:

0 commit comments

Comments
 (0)