Skip to content

Commit

Permalink
Merge pull request #2884 from pre-commit/typo
Browse files Browse the repository at this point in the history
fix typo in testing/languages
  • Loading branch information
asottile committed May 13, 2023
2 parents ee49d42 + 9c2a011 commit 72b7b53
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion testing/languages
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ EXCLUDED = frozenset((


def _always_run() -> frozenset[str]:
ret = ['.github/workflows/languages.yml', 'testing/languages']
ret = ['.github/workflows/languages.yaml', 'testing/languages']
ret.extend(
os.path.join('pre_commit/resources', fname)
for fname in os.listdir('pre_commit/resources')
Expand Down Expand Up @@ -57,6 +57,8 @@ def main() -> int:
]

triggers_all = _always_run()
for fname in triggers_all:
assert os.path.exists(fname), fname

if not args.all:
with concurrent.futures.ThreadPoolExecutor(os.cpu_count()) as exe:
Expand Down

0 comments on commit 72b7b53

Please sign in to comment.