From 87375e0f23c54bdcd8602d52c7cf5853a033b437 Mon Sep 17 00:00:00 2001 From: Alex Stokes Date: Tue, 13 Aug 2019 14:36:05 -0700 Subject: [PATCH] Use the default line length for `black` ('no configuration') and update `isort` to a stable configuration given the black line length --- pyproject.toml | 1 - tox.ini | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fb613af..b15cc88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,4 @@ [tool.black] -line-length = 100 target_version = ['py37'] include = '\.pyi?$' exclude = ''' diff --git a/tox.ini b/tox.ini index c735abb..6c720e7 100644 --- a/tox.ini +++ b/tox.ini @@ -19,7 +19,7 @@ multi_line_output=3 include_trailing_comma=True force_grid_wrap=0 use_parentheses=True -line_length=100 +line_length=88 skip_glob= *_pb2*.py *.pyi