79524891

Date: 2025-03-21 08:32:52
Score: 0.5
Natty:
Report link

Adding the tablename and a primary key to the class solves your issue

class SpamModel(Base):
   __tablename__ = 'spam'
   id: Mapped[int] = mapped_column(Integer(), primary_key=True)
NotImplementedError
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Sam