Skip to content

Commit

Permalink
mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
skullydazed committed Feb 4, 2025
1 parent 46742e1 commit c75062e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion milc/_sparkline.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def sparkline(
if int_range == 0:
spark_int = 0
else:
spark_int = (i-min_value) / int_range * 8 # type: ignore[operator]
spark_int = (i-min_value) / int_range * 8 # type: ignore[operator,assignment]

if spark_int > 7:
spark_int = 7
Expand Down

0 comments on commit c75062e

Please sign in to comment.