WIP lookup commands

This commit is contained in:
DiG 2022-01-17 15:00:45 +01:00
parent cc636adccc
commit d39f91a044
1 changed files with 1 additions and 1 deletions

View File

@ -337,7 +337,7 @@ def flatten_stack( data ):
flat = []
if type(data) == str:
return data
return [ data ]
if type(data) == list:
res = [ flatten_stack( sub ) for sub in data ]