You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* change: Add Black formatting tool as dependency
As of this commit, Black formatting tool can be run with 'tox -e black-format'.
Black does not run as part of any automated process, yet.
Black is pulled in as a test dependency only if the Python version
is greater than 3.6, as the tool is not vended as part of any
earlier Python version.
* change: Resolve Black formatting failures
Black is unable to handle trailing 'L' or 'l' which is no longer
supported as of python 3.8.
This commit removes those unnecessary 'long' identifiers.
https://www.python.org/dev/peps/pep-0237/
* change: Format all files using Black
This commit contains no functional changes.
* change: Manually resolve flake8 violations after formatting
* change: Manually resolve pylint violations after formatting
* change: Enable black locally and in automated build.
This commit enables black-format as part of "tox tests/unit", in order to
format all files.
It also enables black-check as part of the remote builds, in order to
verify that all files are properly formatted.
0 commit comments