DEV Community

Discussion on: Bye-bye pylint

Collapse
 
itamarst profile image
Itamar Turner-Trauring

mypy won't catch everything, e.g. pylint can catch closure bugs:

for x in y:
    l.append(lambda: do(x))
Collapse
 
dmerejkowsky profile image
Dimitri Merejkowsky • Edited

Good point. I'll talk about this in a following post. Stay tuned !

Collapse
 
dmerejkowsky profile image
Dimitri Merejkowsky

And here's the new article, as promised: dmerej.info/blog/post/hello-flake8/