I've been using the Google Docstring format described here but I'm wondering if there is an agreed upon method for documenting lists of a known type.
I've been using
def function(a_list)
"""
Args:
a_list (list[dict]): a list of dictionaries
"""
...
Is this correct?