[code-quality] .pylint.d has 170MB, how to clean?

2015-07-25 Thread Štefan Hocko
Hello everybody, I found out that my .pylint.d directory has grown to 170MB, as I am working on a 1GB workspace this is a lot. I haven't found a way to clean it in the FAQ or manual. Can I just delete the contents without damaging PyLint? Thanks for answers, Best Regards, Stefan

Re: [code-quality] .pylint.d has 170MB, how to clean?

2015-07-25 Thread Claudiu Popa
On Sat, Jul 25, 2015 at 11:57 AM, Štefan Hocko wrote: > Hello everybody, > > I found out that my .pylint.d directory has grown to 170MB, as I am working > on a 1GB workspace this is a lot. I haven't found a way to clean it in the > FAQ or manual. Can I just delete the contents without damaging PyL

[code-quality] Questions: Flake8-2.4.1

2015-07-25 Thread Rich Shepard
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

Re: [code-quality] Questions: Flake8-2.4.1

2015-07-25 Thread Ian Cordasco
On Sat, Jul 25, 2015 at 11:36 AM, Rich Shepard 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

Re: [code-quality] Questions: Flake8-2.4.1

2015-07-25 Thread Rich Shepard
On Sat, 25 Jul 2015, Ian Cordasco wrote: 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. Ian, This is interesting. I shut down emacs for a couple of hours. Just invoked it and loaded the source file. Running

Re: [code-quality] Questions: Flake8-2.4.1

2015-07-25 Thread Ian Cordasco
On Sat, Jul 25, 2015 at 7:00 PM, Rich Shepard wrote: > On Sat, 25 Jul 2015, Ian Cordasco wrote: > >> 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. > > > Ian, > > This is interesting. I shut down emacs for a c

Re: [code-quality] Questions: Flake8-2.4.1

2015-07-25 Thread INADA Naoki
assignment `=` should be have spaces. keyword argument `=` should not have spaces (except case of function annotation in definition). So On Sun, Jul 26, 2015 at 1:36 AM, Rich Shepard wrote: > Just installed flake8-2.4.1. Checking a file generates this error: > > pwschemasl.py:698:39: E225 mis