From 42c55f298e2caf219612a23e4338e28a6a574b9c Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 1 Jun 2020 13:25:22 +0000 Subject: [PATCH 1/2] Bump pycodestyle from 2.5.0 to 2.6.0 Bumps [pycodestyle](https://github.com/PyCQA/pycodestyle) from 2.5.0 to 2.6.0. - [Release notes](https://github.com/PyCQA/pycodestyle/releases) - [Changelog](https://github.com/PyCQA/pycodestyle/blob/master/CHANGES.txt) - [Commits](https://github.com/PyCQA/pycodestyle/compare/2.5.0...2.6.0) Signed-off-by: dependabot-preview[bot] --- requirements-dev.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index a16b484..485a33f 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,7 +1,7 @@ coverage mock nose -pycodestyle==2.5.0 +pycodestyle==2.6.0 pyflakes==2.2.0 readme_renderer[md]==26.0 requests_mock From a1b72ac29fc3078f721cab53fba708d1e3b4fd04 Mon Sep 17 00:00:00 2001 From: Ross McFarland Date: Mon, 1 Jun 2020 06:26:48 -0700 Subject: [PATCH 2/2] Ignore E741, flags single-letter var names in comprehensions which I want to allow --- script/lint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/lint b/script/lint index 5fd9a7d..627c5be 100755 --- a/script/lint +++ b/script/lint @@ -17,5 +17,5 @@ fi SOURCES="*.py octodns/*.py octodns/*/*.py tests/*.py" -pycodestyle --ignore=E221,E241,E251,E722,W504 $SOURCES +pycodestyle --ignore=E221,E241,E251,E722,E741,W504 $SOURCES pyflakes $SOURCES