From 58edfc26edf834a5ff263c7778a89ee167232651 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Tue, 19 Dec 2017 16:02:36 -0600 Subject: [PATCH] flake8 --ignore=E111,E121 script/cpplint.py --- script/cpplint.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/script/cpplint.py b/script/cpplint.py index 9dd25276ae..ca4cdf70f5 100755 --- a/script/cpplint.py +++ b/script/cpplint.py @@ -1,7 +1,6 @@ #!/usr/bin/env python import argparse -import fnmatch import os import sys @@ -83,7 +82,7 @@ def find_files(roots, test): for root in roots: for parent, _, children, in os.walk(root): for child in children: - filename = os.path.join(parent,child) + filename = os.path.join(parent, child) if test(filename): matches.add(filename) return matches