forked from DGNum/gestioCOF
PEP8: few more changes
Taken MR comments into account: * `and` is considered a binary operator, thus put at the beginning of the line when splitting a line, * same for `+`, * same for `.` (different reasons).
This commit is contained in:
parent
88bccc0e60
commit
6d68f6638f
8 changed files with 31 additions and 31 deletions
|
@ -43,5 +43,5 @@ class ResellForm(forms.Form):
|
|||
|
||||
def __init__(self, participant, *args, **kwargs):
|
||||
super(ResellForm, self).__init__(*args, **kwargs)
|
||||
self.fields['spectacle'].queryset = participant.attributions.all().\
|
||||
distinct()
|
||||
self.fields['spectacle'].queryset = participant.attributions.all() \
|
||||
.distinct()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue