Formattage et robustesse
- Ajoute des espaces après les `:` dans la déclaration des dictionnaires. - Change le `= 2` et `+= 1` pour rendre le code plus résistant à une éventuelle mise à jour.
This commit is contained in:
parent
38acbd82d1
commit
afc4718f2d
1 changed files with 7 additions and 7 deletions
|
@ -304,7 +304,7 @@ def spectacle(request, tirage_id, spectacle_id):
|
||||||
'paid': participant.paid,
|
'paid': participant.paid,
|
||||||
'nb_places': 1}
|
'nb_places': 1}
|
||||||
if participant.id in participants:
|
if participant.id in participants:
|
||||||
participants[participant.id]['nb_places'] = 2
|
participants[participant.id]['nb_places'] += 1
|
||||||
else:
|
else:
|
||||||
participants[participant.id] = participant_info
|
participants[participant.id] = participant_info
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue