...
FWIW, when I'm writing Go code I have used emacs 'go-mode' and
this runs 'go fmt' to automatically fix your style problems
every time you save the file. So your code is basically always
correct, and you don't need a separate job to check it later.
Since you mentioned ^this, we should do the same for python code and use the
"black" tool, it has plugins for several editors (most importantly vim) as
well.
Erik