Pas d'espace entre le nom du paramètre et la valeur par défaut. flake8 est content

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

View File

@ -53,7 +53,7 @@ def blague():
"et la pratique ? Il n'y en a pas, en théorie."])
def calcul(a, b, c, operation = '+'):
def calcul(a, b, c, 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.