79160882

Date: 2024-11-05 22:44:26
Score: 1
Natty:
Report link

You have to add an init method to your class, to accept argument. The name, email, and password are defined as mapped column but not a parameter so you add an init method.

def __init__(self, email, password, name):
    self.name = name
    self.email = email
    self.password = password
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abednego Tenge