Christopher Barker <python...@gmail.com> writes: > On Wed, Feb 20, 2019 at 11:51 PM Lele Gaifax <l...@metapensiero.it> wrote: > >> if ((condition1 >> and condition2 >> and condition3)): >> do_something() >> > > ouch! ehy not jsut do: > > if (condition1 > and condition2 > and condition3)): > do_something() > > (or any number of other options) > > and teach your linter that that's OK (or ignore your linter)
Because I would first need to teach Emacs the aforementioned "indent-and-half" for continuation lines :-) ciao, lele. -- nickname: Lele Gaifax | Quando vivrò di quello che ho pensato ieri real: Emanuele Gaifas | comincerò ad aver paura di chi mi copia. l...@metapensiero.it | -- Fortunato Depero, 1929. _______________________________________________ Python-ideas mailing list Python-ideas@python.org https://mail.python.org/mailman/listinfo/python-ideas Code of Conduct: http://python.org/psf/codeofconduct/