From 078b62131c244d3c15631a953a35c46db1719b51 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 15 Mar 2018 06:20:05 -0400 Subject: [PATCH] commit Signed-off-by: Kenneth Reitz --- .gitignore | 6 ++++++ red.py => white.py | 4 +--- 2 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 .gitignore rename red.py => white.py (84%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..937c722 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ + +/white.egg-info/ + +/dist/ + +/build/ diff --git a/red.py b/white.py similarity index 84% rename from red.py rename to white.py index 52d0568..c16c62d 100644 --- a/red.py +++ b/white.py @@ -17,9 +17,7 @@ def main(): # 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}" - ) + c = delegator.run(f"{python} {black} {args} --line-length {PEP8_LINE_LENGTH}") # Print output. print(c.out) print(c.err)