Skip to content

Commit

Permalink
Fix type
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerrit Vermeulen committed Jul 30, 2024
1 parent 0a68c3f commit 2d59e19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion home/export_assessments.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def perform_export(self) -> Iterable[ExportRow]:
medium_result_page=getattr(item.medium_result_page, "slug", None),
medium_inflection=getattr(item, "medium_inflection", None),
low_result_page=getattr(item.low_result_page, "slug", None),
skip_threshold=getattr(item, "skip_threshold", 0.0),
skip_threshold=getattr(item, "skip_threshold", "0.0"),
skip_high_result_page=getattr(
item.skip_high_result_page, "slug", None
),
Expand Down

0 comments on commit 2d59e19

Please sign in to comment.