fix count cars script

This commit is contained in:
Adeeb Shihadeh
2021-09-15 11:31:45 -07:00
parent b7e74f3b24
commit 3ab2d29fb8
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
import os
from common.basedir import BASEDIR
with open(os.path.join(BASEDIR, "README.md")) as f:
with open(os.path.join(BASEDIR, "docs/CARS.md")) as f:
lines = f.readlines()
cars = [l for l in lines if l.strip().startswith("|") and l.strip().endswith("|") and
"Make" not in l and any(c.isalpha() for c in l)]