sensortoolkit.lib_utils._flatten_list.flatten_list

flatten_list(list_of_lists)[source]

Flatten a nested list of values.

Parameters

list_of_lists (list) – A nested list, example: [‘a’, [‘b’, ‘c’]]

Returns

A flattened list, example: [‘a’, ‘b’, ‘c’]

Return type

flat_list (list)