Skip to content

Commit

Permalink
Fix no_diff with missing pre and post snapfile
Browse files Browse the repository at this point in the history
  • Loading branch information
chidanandpujar committed May 29, 2024
1 parent 3b5b452 commit 0cc246b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jnpr/jsnapy/operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -2885,7 +2885,7 @@ def no_diff(
else:
# mapping id name to its value
for length in range(len(k)):
if (len(k[0]) > 0):
if len(k[0]) > 0:
id_val[id_list[length]] = k[length][0].strip()
if k in data1:
predict, postdict = self._get_nodevalue(
Expand Down

0 comments on commit 0cc246b

Please sign in to comment.