From 075da0a898cbfc66b6848253f12a75f5a3382769 Mon Sep 17 00:00:00 2001 From: Felipe Ferreira Date: Sat, 12 Oct 2024 01:14:45 +1100 Subject: [PATCH] this change setup linter rule for unused variables, fixing the issue #4280 --- setup.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/setup.py b/setup.py index 6e48129cba..cb32b6d970 100644 --- a/setup.py +++ b/setup.py @@ -116,4 +116,10 @@ def _global_version(version): ], package_data={"vyper.ast": ["grammar.lark"]}, data_files=[("", [hash_file_rel_path])], + # Add linter configuration for flake8 + options={ + "flake8": { + "select": "F401", + } + } )