From f1fc078dc1a9c69d891c4cc7fab091a5e801536d Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 22 Aug 2017 08:08:28 +0200 Subject: [PATCH] Remove vulture exclude Looks like it was removed in https://github.com/jendrikseipp/vulture/commit/d35e73dedaf26c4f4b693760e168a87ef7b72579, and passing [] seems to be equal to the default nowadays anyways. --- scripts/dev/run_vulture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dev/run_vulture.py b/scripts/dev/run_vulture.py index 2a0ecec44..ae5ca76fa 100755 --- a/scripts/dev/run_vulture.py +++ b/scripts/dev/run_vulture.py @@ -143,7 +143,7 @@ def run(files): whitelist_file.close() - vult = vulture.Vulture(exclude=[], verbose=False) + vult = vulture.Vulture(verbose=False) vult.scavenge(files + [whitelist_file.name]) os.remove(whitelist_file.name)