On renomme a, b et c qui ne sont pas suffisamment explicites

Signed-off-by: Yohann D'ANELLO <ynerant@crans.org>
This commit is contained in:
Yohann D'ANELLO 2021-01-26 16:41:07 +01:00
parent ca69954315
commit 9018ab4996
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ def blague():
"et la pratique ? Il n'y en a pas, en théorie."])
def calcul(a, b, c, operation='+'):
def calcul(left: int, right: int, res: int, operation='+'):
"""
Vérifie si a operation b == c, a, b et c sont des entiers.
L'opération peut être +, -, *, /, &, |, ^, % ou l'un de ses alias anglais.