mirror of
https://github.com/kennethreitz-archive/white.git
synced 2026-06-17 21:50:58 +00:00
d098204a9e
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
15 lines
202 B
Python
15 lines
202 B
Python
import sys
|
|
|
|
import black
|
|
|
|
PEP8_LINE_LENGTH = 79
|
|
|
|
|
|
def main():
|
|
"""Runs White."""
|
|
sys.argv.extend(['--line-length', str(PEP8_LINE_LENGTH)])
|
|
black.main()
|
|
|
|
if __name__ == '__main__':
|
|
main()
|