Skip to content

Commit ce3a927

Browse files
committed
[airos] fixed empty dictionary result
1 parent ce6c37e commit ce3a927

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

netjsonconfig/backends/airos/airos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ def intermediate_to_list(configuration):
145145
temp = {}
146146
for key, value in element.items():
147147
if isinstance(value, string_types) or isinstance(value, int):
148-
pass
148+
temp[key] = value
149149
else:
150150
# reduce to atom list
151151
# as value could be dict or list

0 commit comments

Comments
 (0)