According to the code:
|
for index, participant in enumerate(participants): |
|
for vc in vc_matrix: |
|
for k, v in vc.items(): |
|
participants[index][k] = v |
when multiple vcs are specified in participants_matrix, only the last will be effective since it'll override previous ones.