It shows only three because you have two "B", so it takes unique letters,
instead of
'a': ['A', 'B', 'C', 'B'],
write
'a': ['A', 'B', 'C', 'D'],
So replace last 'B' with 'D' or with any other letter, once they are unique, you will see four bars.