PEP8 is automatically formatting a part of my code, I was just learning about lambdas and I had a 2 line code like this:
My simple code: (2 lines)
What PEP 8 does: (4 lines)
it may not seem like a lot, but it went from 2 lines to 4 lines, with the huge possibility of it being a 6 line code (if I had anything above the def function, it would add another 2 lines between them.)
If the def had anything above: (6 lines)
So it can easily go from 2 lines to 6 lines!
How do I disable this function specifically for lambdas?
My simple code: (2 lines)
What PEP 8 does: (4 lines)
it may not seem like a lot, but it went from 2 lines to 4 lines, with the huge possibility of it being a 6 line code (if I had anything above the def function, it would add another 2 lines between them.)
If the def had anything above: (6 lines)
So it can easily go from 2 lines to 6 lines!
How do I disable this function specifically for lambdas?