Une chaîne de caractères est entourée de guillemets

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

View File

@ -68,7 +68,7 @@ def calcul(a, b, c, operation = '+'):
result = a & b
if operation == 'and':
result = a & b
if operation == |:
if operation == '|':
result = a | b
if operation == 'or':
result = a | b