Open jaymzh opened 11 years ago
If you do this in an attribute file:
foo, bar = some_func(thing) default['waka']['foo'] = foo default['waka']['bar'] = bar
You get FC044 errors on the last line. You can work around it with:
foo = [] bar = [] foo, bar = some_func(thing) default['waka']['foo'] = foo default['waka']['bar'] = bar
@acrmp ping?
I have the same issue.
Confirmed this is still an issue on master
If you do this in an attribute file:
You get FC044 errors on the last line. You can work around it with: