aboutsummaryrefslogtreecommitdiff
path: root/scripts/check-includes.py
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2019-07-29 04:43:49 +0200
committerDaniel Hahler <git@thequod.de>2019-07-29 22:14:23 +0200
commitd7b04ae7a713412ac2882d1c6c2fce70ebb5766e (patch)
tree0e524906a7450d889bbf11c380fae7e1270439de /scripts/check-includes.py
parent97ce776e7ba68d1966fddba475b11e85a6c53420 (diff)
downloadrneovim-d7b04ae7a713412ac2882d1c6c2fce70ebb5766e.tar.gz
rneovim-d7b04ae7a713412ac2882d1c6c2fce70ebb5766e.tar.bz2
rneovim-d7b04ae7a713412ac2882d1c6c2fce70ebb5766e.zip
py: flake8 fixes
Diffstat (limited to 'scripts/check-includes.py')
-rwxr-xr-xscripts/check-includes.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/check-includes.py b/scripts/check-includes.py
index 735fb393dd..ed1fe407c5 100755
--- a/scripts/check-includes.py
+++ b/scripts/check-includes.py
@@ -22,8 +22,6 @@ def main(argv):
args = argparser.parse_args(argv)
with args.file:
- include_dirs = []
-
iwyu = Popen(['include-what-you-use', '-xc'] + args.iwyu_args + ['/dev/stdin'],
stdin=PIPE, stdout=PIPE, stderr=PIPE)