• SQLAlchemy enum issues
    • Several issue due to recent changes in SQLalchemy from constants to enums
      • Needed changes in the entire codebase, some changes were hard to spot and forgotten
    • Lessons learned:
      • More testcases - We should remind ourselves when developing how important proper testing is.
      • After the first issues are detected: Deeper code-dive needed to find others
    • Things which could help
      • Python type method annotations
      • No need to assert everything, but type annotations would already help