diff options
author | Anthony Sottile <asottile@umich.edu> | 2021-10-10 17:14:20 -0700 |
---|---|---|
committer | Anthony Sottile <asottile@umich.edu> | 2021-10-10 17:14:20 -0700 |
commit | e2eaea87bbf72c52c7db5415420b5befd0f43723 (patch) | |
tree | ca65530ebc058ad038df33749113c478b3dcba79 /pycodestyle.py | |
parent | 533073e22cb66b277e09ee41a034380494f9a11e (diff) | |
download | pep8-e2eaea87bbf72c52c7db5415420b5befd0f43723.tar.gz |
add simple .pre-commit-config.yaml
Diffstat (limited to 'pycodestyle.py')
-rwxr-xr-x | pycodestyle.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pycodestyle.py b/pycodestyle.py index cb26904..aa70791 100755 --- a/pycodestyle.py +++ b/pycodestyle.py @@ -25,7 +25,6 @@ # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. - r""" Check Python source code formatting, according to PEP 8. @@ -49,6 +48,7 @@ W warnings """ from __future__ import with_statement +import bisect import inspect import keyword import os @@ -57,7 +57,6 @@ import sys import time import tokenize import warnings -import bisect try: from functools import lru_cache |