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
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
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
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
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
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
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