Skip to content

Commit a8ee253

Browse files
committed
Automation Toolkit Release v12
1 parent f07b3d9 commit a8ee253

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cd3_automation_toolkit/cd3Validator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ def validate_subnets(filename, comp_ids, vcnobj):
330330
cidr=vcncidrlist[(vcn,region)]
331331
if("," in cidr):
332332
for x in cidr.split(','):
333-
x.strip()
333+
x=x.strip()
334334
try:
335335
vcn_cidr = ipaddress.ip_network(x)
336336
except ValueError:
@@ -443,7 +443,7 @@ def validate_vcns(filename, comp_ids, vcnobj, config): # ,vcn_cidrs,vcn_compart
443443
cidr_list.append(entry)
444444
else:
445445
for x in str(dfv.loc[i, 'CIDR Blocks']).strip().split(','):
446-
x.strip()
446+
x=x.strip()
447447
entry=(x,i+3)
448448
cidr_list.append(entry)
449449

0 commit comments

Comments
 (0)