Closed bwrsandman closed 10 months ago
Improves the recommendation for google-readability-todo by providing a proper name which would previously be TODO(docker) or TODO(unknown).
google-readability-todo
TODO(docker)
TODO(unknown)
If for whatever reason, the name cannot be found, it will default to TODO(your name here).
TODO(your name here)
Closes #102 without the need for a new parameter.
Note that I think using env in subprocess also kill all env leaking into the call for subprocess.run. Hopefully no one relies on that.
env
subprocess.run
Improves the recommendation for
google-readability-todo
by providing a proper name which would previously beTODO(docker)
orTODO(unknown)
.If for whatever reason, the name cannot be found, it will default to
TODO(your name here)
.Closes #102 without the need for a new parameter.
Note that I think using
env
in subprocess also kill all env leaking into the call forsubprocess.run
. Hopefully no one relies on that.