Skip to content

Commit

Permalink
mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
ric-evans committed Nov 14, 2024
1 parent 7d4434a commit 70f6b2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/aggregate_dataset_histos.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def _main(args: argparse.Namespace) -> None:
for histo in agg_histograms.values():
histo.update(
{
"bin_values": [x / histo["_sample_count"] for x in histo["bin_values"]],
"bin_values": [x / histo["_sample_count"] for x in histo["bin_values"]], # type: ignore=attr-defined
}
)

Expand Down

0 comments on commit 70f6b2b

Please sign in to comment.