When constructing a list in a python script, it's easy to accommodate long entries to make them readable by splitting them into several lines:
myList = ['blahblah0', 'blahblah1', 'blahblah2',
'blahblah3', 'blahblah4', 'blahblah5']<SPAN class="line-numbers-rows"><SPAN></SPAN><SPAN></SPAN></SPAN>However, the same does not hold true in arcade. I have to construct a list of attributes that goes on ad nauseam for an attribute rule . Adding attribute field names in an arcade list that goes on seemingly forever is tedious at best. Is there a way to manage a list such that arcade can be happy with it and I don't go blind? Can I merge a series of lists together in arcade? That way I could have multiple lists each of a readable size, and merge them into one 'one the fly' so arcade can read each of the attributes?
Xander Bakker
Chris Fox