How to remove the line breaks that Python includes in the formatting when saving the code in VSCode
For example:
If I have an expression with multiple validations:
if True == True or False == True or False == False:
It is being formatted as:
if (True == True
or False == True
or False == False)
This complicates readability. How can I reformat it to look like the first example?