Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2018-03-15 06:20:05 -04:00
parent eeee5f7eb1
commit 078b62131c
2 changed files with 7 additions and 3 deletions
+6
View File
@@ -0,0 +1,6 @@
/white.egg-info/
/dist/
/build/
+1 -3
View File
@@ -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)