Although this seems like it would work, the ini file format used in UE doesn’t conform to the spec defined in configparser. UE uses multiple identical keys for array values and this breaks the base implementation for configparser which requires section keys to be unique when reading. I’ve had to write my own parser implementation to cast it to list when more then one entry appears in the ini file.
2 Likes