From 8f5019d130e7c10c599d2d0897b92e48ad59e2f0 Mon Sep 17 00:00:00 2001 From: Kai Schwarz Date: Tue, 10 Jul 2018 10:50:11 +0200 Subject: [PATCH] migrate from pep9 to pycodestyle --- scripts/pep8check.sh | 2 +- setup.cfg | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/pep8check.sh b/scripts/pep8check.sh index be1193f..53cb9c0 100755 --- a/scripts/pep8check.sh +++ b/scripts/pep8check.sh @@ -1,2 +1,2 @@ #!/bin/bash -pep8 --first --show-source --show-pep8 +pycodestyle --first --show-source --show-pep8 setup.py hexonet/apiconnector/__init__.py hexonet/apiconnector/connection.py hexonet/apiconnector/response.py hexonet/apiconnector/util.py diff --git a/setup.cfg b/setup.cfg index 940c5d6..5c01ead 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,10 +4,10 @@ universal=1 [metadata] license_file = LICENSE -[pep8] +[pycodestyle] max-line-length = 120 [flake8] max-line-length = 120 ignore = F401,E402,F403 -exclude = venv \ No newline at end of file +exclude = venv