Skip to content

Commit

Permalink
fixed changes
Browse files Browse the repository at this point in the history
  • Loading branch information
KennethEnevoldsen committed Dec 25, 2024
1 parent 3207d85 commit d9e8a08
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,7 @@ exclude = [
"node_modules",
"venv",
"__init__.py",
".venv",
".env",
".git",
"__pycache__",
"dev/**",
"training/main/**",
Expand Down
2 changes: 1 addition & 1 deletion src/dacy/score/score.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def __score(augmenter): # noqa: ANN001

# and collapse list to dict
for key in scores: # type: ignore
scores[key] = [s.get([key], None) for s in scores_ls] # type: ignore
scores[key] = [s.get(key, None) for s in scores_ls] # type: ignore

scores["k"] = list(range(k)) # type: ignore

Expand Down

0 comments on commit d9e8a08

Please sign in to comment.