Files
white/white.py
T
kennethreitz 078b62131c commit
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
2018-03-15 06:20:05 -04:00

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()