When I do the following:
configKeys = VALIDATION_DEFAULT_CONFIGURATION.keys()
print(configKeys)
But when I do this:
keys = [ x.value for x in configKeys ]
I get the following error:
keys = [ x.value for x in configKeys ]
AttributeError: 'str' object has no attribute 'value'
Why is this so? How can I fix this error?
x's are strings, not keys.athena.enum.StrEnum?