mirror of
https://github.com/kennethreitz-archive/white.git
synced 2026-06-05 15:10:17 +00:00
078b62131c
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
30 lines
630 B
Python
30 lines
630 B
Python
import sys
|
|
|
|
import black
|
|
import delegator
|
|
|
|
PEP8_LINE_LENGTH = 79
|
|
|
|
|
|
def get_black_executable():
|
|
"""Returns executable information about Black."""
|
|
return (sys.executable, black.__file__.rstrip('cdo'))
|
|
|
|
|
|
def main():
|
|
"""Runs Red."""
|
|
python, black = get_black_executable()
|
|
# Prepare the additional command-line arguments.
|
|
args = ' '.join(sys.argv[1:])
|
|
# Spawn a subprocess.
|
|
c = delegator.run(f"{python} {black} {args} --line-length {PEP8_LINE_LENGTH}")
|
|
# Print output.
|
|
print(c.out)
|
|
print(c.err)
|
|
# Exit the status code.
|
|
sys.exit(c.return_code)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|