Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
m4rc1e committed Jun 24, 2022
1 parent 76d5378 commit f611847
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions bin/gftools-test-gf-coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@
nam_dir)


NAM_DIR = os.path.join(nam_dir, "GF Glyph Sets")
NAM_FILES = [os.path.join(NAM_DIR, f)
for f in os.listdir(NAM_DIR)
NAM_FILES = [f for f in os.listdir(nam_dir)
if f.endswith(".nam")]


Expand All @@ -34,7 +32,7 @@ def main():

expected = set()
for nam_file in NAM_FILES:
nam_filepath = os.path.join(NAM_DIR, nam_file)
nam_filepath = os.path.join(nam_dir, nam_file)
expected.update(CodepointsInNamelist(nam_filepath))

filename = sys.argv[1]
Expand Down

0 comments on commit f611847

Please sign in to comment.