fix type
This commit is contained in:
parent
f335423a7a
commit
9aefbefbaf
1 changed files with 1 additions and 1 deletions
2
users.py
2
users.py
|
@ -34,7 +34,7 @@ class Utilisateurs(BaseDeDonnees):
|
|||
postal=46800
|
||||
)
|
||||
|
||||
def ajoutUtilisateur(self, pseudo: str, passe: str, metier: int, nom: str, prenom: str, naissance: str, adresse: str, postal: str) -> list:
|
||||
def ajoutUtilisateur(self, pseudo: str, passe: str, metier: int, nom: str, prenom: str, naissance: str, adresse: str, postal: int) -> list:
|
||||
"""Ajoute un utilisateur et retourne l'ID de ce dernier."""
|
||||
requete = """
|
||||
INSERT INTO utilisateurs (
|
||||
|
|
Reference in a new issue