Is it possible to change the binary path of `black...
# general
r
Is it possible to change the binary path of
black
? I want to use
pyink
instead (which is a fork of black). https://github.com/google/pyink
d
I'm not certain this will work. But you can try setting up a resolve for black to run in (this does work). But install pyink into that resolve, and then try setting the console_script or entry_point options to point to pyink instead: https://www.pantsbuild.org/dev/reference/subsystems/black
Otherwise, you might have to create a plugin that's basically the same as the current black plugin, but swap out everything that says "black" with "pyink"
r
It works. Thanks!