Questions tagged [python-black]

Black is the uncompromising Python code formatter.

Black is the uncompromising Python code formatter.

Blackened code looks the same regardless of the project you're reading. Formatting becomes transparent after a while and you can focus on the content instead.

91 questions
-2
votes
1 answer

VS code pylint errors and format not working

Here is the code from test python file with errors: asdf = "test" print(asdf) my_list = [1,2,3,4,5] # expected on save my_list = [1, 2, 3, 4, 5] for num in my_list: print(num) # Expected on save (does not format) # print(num) # if i manully…
soul
  • 29
  • 9
1 2 3 4 5 6
7