Build a User Configuration Manager - Build a User Configuration Manager

Tell us what’s happening:

There is an error with my terminal in every Python challenge and workshop. It displays “WWWWWWWWWWWWWWWWWWWWWWW”.
In order to read whats being displayed in the terminal i have to highlight every line with my mouse. It is really really hard to work with the terminal like this and i have no clue on how to fix it. It is only my case or someone else is going trough the same user experience issue? Thank you

Your code so far

test_settings = {
    'name': 'x',
    'color': 'blue'
}

new = ('THEME','DARK')

def add_setting(settings, setting):
    settingList = [setting[0].lower(), setting[1].lower()]
    settingTuple = tuple(settingList)
    print(settingTuple)
    if settings[settingTuple]:
        print(f"Setting '{key}' already exists! Cannot add a new setting with this name.")
    return 



print(add_setting(test_settings, new))

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36

Challenge Information:

Build a User Configuration Manager - Build a User Configuration Manager

right now, if you switch to night mode the text is visible

a fix is being worked on

2 Likes