@python exec import enum
class Test(enum.Enum):
lower = 1
upper = 2
print(Test.lower == Test.lower)
The response given by the bot does not convey enough info about the code
{'enum': <module 'enum' from '/app/.heroku/python/lib/python3.10/enum.py'>, 'Test': <enum 'Test'>}