diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-06-27 16:28:06 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-06-27 16:28:06 -0400 |
commit | b0cacfdd4f380cf7e9e3d91458868733bf81f366 (patch) | |
tree | f77bcda9ffdd4139defa0bd42920bd52a89f1f37 | |
parent | ec2c32bf93cc6fd60db87009643ece32c7926021 (diff) | |
download | sqlalchemy-b0cacfdd4f380cf7e9e3d91458868733bf81f366.tar.gz |
Revert 1ed2f162151 black target version
Unfortunately target version py27 makes Black want to break
print functions, even if you put a "from __future__ import print_function"
at the top, so it is being inconsistent in its "we've decided this
is a python 2 file" logic and basically this thing really needs
command line arguments
Change-Id: Iefa62df4224b9620e764b16b1c390647f948e85f
-rw-r--r-- | .pre-commit-config.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index e11efe17b..f9b217e55 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -5,7 +5,7 @@ repos: rev: 19.3b0 hooks: - id: black - args: [-l 79, --target-version=py27] + args: [-l 79] - repo: https://github.com/sqlalchemyorg/zimports/ rev: master |