There are two approaches: 1. disable E711 and E712. this is what I'm doing for the project itself.
2. use == sqlalchemy.null(), == sqlalchemy.true(), == sqlalchemy.false() instead of None, True, False. This might be a better idea for everyone else who cares about super-clean code. On Jul 22, 2014, at 5:57 PM, Jonathan Vanasco <[email protected]> wrote: > thanks. I already added `# noqa` to those lines. > > that pep8 test is actually bad, digging into the docs, it's actually > recommending the "worst case" format. there's a bunch of debate on it in a > github ticket. > > do you know of any other odd behaviors? > > -- > You received this message because you are subscribed to the Google Groups > "sqlalchemy" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/sqlalchemy. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sqlalchemy. For more options, visit https://groups.google.com/d/optout.
