From c761c437d4cb4a647a5c65b704731c86f0883385 Mon Sep 17 00:00:00 2001 From: Danny Ryan Date: Tue, 16 Jun 2020 12:11:47 -0600 Subject: [PATCH] revert e128 and c901 in lint --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 419500ebb..da87f7912 100644 --- a/Makefile +++ b/Makefile @@ -101,7 +101,7 @@ codespell: lint: pyspec . venv/bin/activate; cd $(PY_SPEC_DIR); \ - flake8 --ignore=E252,W504,W503,E128,C901 --max-line-length=120 ./eth2spec \ + flake8 --ignore=E252,W504,W503 --max-line-length=120 ./eth2spec \ && cd ./eth2spec && mypy --follow-imports=silent --warn-unused-ignores --ignore-missing-imports --check-untyped-defs --disallow-incomplete-defs --disallow-untyped-defs -p phase0 \ && mypy --follow-imports=silent --warn-unused-ignores --ignore-missing-imports --check-untyped-defs --disallow-incomplete-defs --disallow-untyped-defs -p phase1;