#2 Added functionality for user to signup as a Seller

This commit is contained in:
2024-01-18 20:24:49 +00:00
parent bd3481c2cc
commit e7ca108b7f
4 changed files with 92 additions and 9 deletions

View File

@ -9,6 +9,6 @@ class Seller(User):
def __init__(self, username: str, password: str, firstname: str,
lastname: str, email: str, phone: str):
super().__init__(
id, username, password, firstname, lastname, email, phone, "Seller"
username, password, firstname, lastname, email, phone, "Seller"
)
self.store = ""