[code-quality] Questions: Flake8-2.4.1

Ian Cordasco graffatcolmingov at gmail.com
Sat Jul 25 22:52:15 CEST 2015


On Sat, Jul 25, 2015 at 11:36 AM, Rich Shepard <rshepard at appl-ecosys.com> wrote:
>   Just installed flake8-2.4.1. Checking a file generates this error:
>
> pwschemasl.py:698:39: E225 missing whitespace around operator
>
> on this line:
>
>     rpt_filename=Column(BLOB, nullable=False)
>
> where position 39 is 'F'. So, I add the space:
>
>     rpt_filename=Column(BLOB, nullable= False)
>
> and now flake8 shows this error:
>
> pwschemasl.py:698:40: E251 unexpected spaces around keyword / parameter
> equals
>
>   This is an infinite loop that affects many lines of code in the file. The
> lines throw a PEP8 compliance error both with and without a space following
> the '=' sign.
>
>   Is there something I've done incorrectly that I don't see?
>
> Puzzled,
>
> Rich


Hey Rich,

Could you provide a bit more context for the code? A single line and
an error message aren't very useful for me to reproduce with.

Further, could you provide the output from

$ flake8 --version

Thanks!
Ian


More information about the code-quality mailing list