When printing the different level configurations for different ions, I realized there is a different naming convention. As an example:
Fe and Ar have the following naming convention (spaces)
In [64]: fe[8].levels.configuration[0:5]
Out[64]:
array(['3s2 3p6', '3s2 3p5 3d', '3s2 3p5 3d', '3s2 3p5 3d', '3s2 3p5 3d'],
dtype='<U13')
S and Ca have the filling naming convention (periods)
In [65]: ca[13].levels.configuration[0:5]
Out[65]:
array(['2s2.2p3', '2s2.2p3', '2s2.2p3', '2s2.2p3', '2s2.2p3'],
dtype='<U14')
Be aware when creating masks using level configurations. I am not sure if this is a Chianti or a fiasco issue. Thank you.