def normalize_c_whitespace(file_paths): """Report if any C files """ fixed = [] for path in file_paths: with open(path, 'r') as f: if '\t' not in f.read(): continue untabify.process(path, 8, verbose=False) fixed.append(path) return fixed
def normalize_c_whitespace(file_paths): """Report if any C files """ fixed = [] for path in file_paths: abspath = os.path.join(SRCDIR, path) with open(abspath, "r") as f: if "\t" not in f.read(): continue untabify.process(abspath, 8, verbose=False) fixed.append(path) return fixed