Skip to content

Commit cab3d31

Browse files
author
=
committed
Change Quotes from Single to Double
1 parent 9814c22 commit cab3d31

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/modules/dcnm_vrf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4135,8 +4135,8 @@ def handle_response(self, res, op):
41354135
if res.get("ERROR"):
41364136
fail = True
41374137
changed = False
4138-
if res.get('DATA'):
4139-
for resp_string in res.get('DATA').values():
4138+
if res.get("DATA"):
4139+
for resp_string in res.get("DATA").values():
41404140
if "fail" in resp_string.lower():
41414141
fail = True
41424142
changed = False

0 commit comments

Comments
 (0)