Skip to content

Commit

Permalink
mypy 1000
Browse files Browse the repository at this point in the history
  • Loading branch information
ric-evans committed Nov 14, 2024
1 parent 2d9b3c0 commit de681d4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions scripts/aggregate_dataset_histos.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +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"] # type: ignore=attr-defined
],
"bin_values": [x / histo["_sample_count"] for x in histo["bin_values"]], # type: ignore
}
)

Expand Down

0 comments on commit de681d4

Please sign in to comment.