go.Sunburst chart showing blank screen

Newbie to sunburst charts here. I am charting a list of labels and their parents, in accordance with the directions for go.Sunburst here [see example with Eve.]

For some reason, there is just a blank screen when I plug my trace into my go.Figure(). Here is the trace of the example:

Sunburst({
    'branchvalues': 'total',
    'labels': [Eve, Cain, Seth, Enos, Noam, Abel, Awan, Enoch, Azura],
    'parents': [, Eve, Eve, Seth, Seth, Eve, Eve, Awan, Eve],
    'values': [65, 14, 12, 10, 2, 6, 6, 4, 4]
})

And the trace I am working with:

Sunburst({
    'branchvalues': 'total',
    'labels': [All, Germany, Spain, France, G_Not_0_balance, S_0_balance,
               S_Not_0_balance, F_0_balance, F_Not_0_balance, Exited],
    'parents': [, All, All, All, Germany, Spain, Spain, France, France,
                G_0_balance],
    'values': [10000, 2509, 2477, 5014, 2509, 1199, 1278, 2418, 2596, 814]
})

The length of all lists is the same, and all values are non-zero. Does anyone have any hints as to what I am doing wrong?

All those list items should have quotes round them, I think, but the underlying issue is that the last item in your list has a parent (โ€œG_0_balanceโ€) that isnโ€™t in the label list. If you remove that item, it works - code here:

fig =go.Figure(go.Sunburst({
    'branchvalues': 'total',
    'labels': ["All", "Germany", "Spain", "France", "G_Not_0_balance", "S_0_balance",
               "S_Not_0_balance", "F_0_balance", "F_Not_0_balance"],
    'parents': ["", "All", "All", "All", "Germany", "Spain", "Spain", "France", "France"],
    'values': [10000, 2509, 2477, 5014, 2509, 1199, 1278, 2418, 2596]
}))

Yes! Thank you @davidharris, that solved it.