mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
6 lines
131 B
6 lines
131 B
from typing import Dict, List
|
|
|
|
|
|
def append_field(data: List[Dict], **kwargs):
|
|
[d.update(kwargs) for d in data]
|
|
return data
|