I was trying to read a boolean value using config parser, It finds the section fine but it fails finding the option for some reason.
configparser.NoOptionError: No option 'firsttime' in section: 'DEFAULT'
In the INI i have:
[DEFAULT]
"firsttime" = "true"
And in my main folder i have:
import configparser
config = configparser.ConfigParser()
print(config.getboolean('DEFAULT', 'firsttime'))