-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix enums #2636
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💯
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔥
Kudos, SonarCloud Quality Gate passed! 0 Bugs No Coverage information |
Good catch 🥇 . Now we should be able to remove |
Description
This PR patches a breaking change in Python 3.11 related to enum mixins, see python/cpython#100458. Closes #2618.
I think this bug explains the weird values seen in the ticketing service.
To resolve the issue, all instances of
were replaced with
It might be the case that some database tables need to be patched 🥲
Fixed
This version is a
Implementation Plan