diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ee6e854..9173aa1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -41,6 +41,7 @@ Other - Replace ``bumpversion`` by `bump2version `_ in ``setup.py`` and documentation. +- Update configuration for Black and iSort. v1.2.10 (2020-05-13) diff --git a/deprecated/classic.py b/deprecated/classic.py index 1087271..af53520 100644 --- a/deprecated/classic.py +++ b/deprecated/classic.py @@ -9,8 +9,8 @@ """ import functools import inspect -import warnings import platform +import warnings import wrapt diff --git a/pyproject.toml b/pyproject.toml index 14d3d9d..4daa17f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,3 +3,7 @@ line-length = 120 skip-string-normalization = true target-version = ['py27', 'py34', 'py35', 'py36', 'py37', 'py38'] include = '\.pyi?$' + +[tool.isort] +line_length = 120 +force_single_line = true