Build a User Configuration Manager - Build a User Configuration Manager

Tell us what’s happening:

I have tried various combinations but I still cannot get the step 4 and 5 right . What’s the issue with the code.

Your code so far

test_settings = {
    'theme' : 'light',
}
kv_pair = ('font', 'Algerian')
def add_setting(settings, kv_pair):
    key = str(kv_pair[0]).lower()
    value = str(kv_pair[1]).lower()

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Mobile Safari/537.36

Challenge Information:

Build a User Configuration Manager - Build a User Configuration Manager

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-user-configuration-manager/684aaf9ec670c68d20efd0d0.md at main · freeCodeCamp/freeCodeCamp · GitHub

I don’t think those are going to pass until you actually update the settings object