Skip to content

Commit

Permalink
small issue with publishing docs
Browse files Browse the repository at this point in the history
  • Loading branch information
nikvaessen committed Feb 3, 2025
1 parent 19e88ea commit 46f6364
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ publish-docs:
git remote set-url deploy-docs [email protected]:jitsi/jiwer.git

# push to deploy-docs remote and gh-pages branch
uv run --group docs mkdocs gh-publish -r deploy-docs -b gh-pages
uv run --group docs mkdocs gh-deploy -r deploy-docs -b gh-pages
2 changes: 1 addition & 1 deletion src/jiwer/alignment.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def collect_error_counts(output: Union[WordOutput, CharacterOutput]):
output: The processed output of reference and hypothesis pair(s).
Returns:
A three-tuple of dictionaries, in the order substitutions, insertions, deletions.
(Tuple[dict, dict, dict]): A three-tuple of dictionaries, in the order substitutions, insertions, deletions.
"""
substitutions = defaultdict(lambda: 0)
insertions = defaultdict(lambda: 0)
Expand Down

0 comments on commit 46f6364

Please sign in to comment.