From 228211c82aeb92e9aa346e4c5bfa53a2a0cf95b8 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 6 Oct 2015 00:06:05 -0400 Subject: lint: fix up unused variables This variables aren't actually used which the linter likes to warn about, so add a _ prefix to their name to silence the warnings. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index feca8941..27ed2de8 100755 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ def _files(prefix, root): Yielding `(target_dir, (file_source_paths, ...))` tuples. """ - for dirpath, dirnames, filenames in _os.walk(root): + for dirpath, _dirnames, filenames in _os.walk(root): reldir = _os.path.relpath(dirpath, root) install_directory = _posix_path( _os.path.join(prefix, reldir)) -- cgit v1.2.3-65-gdbad