Skip to content

Commit

Permalink
Make linters happier.
Browse files Browse the repository at this point in the history
  • Loading branch information
Fish-in-a-Barrel committed Mar 18, 2024
1 parent 01df41f commit a062d6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LabelGenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ def generate_values(
series: List[float], # the base series of resistor values
first_power: int, # the first power of 10 to scale the series by
last_power: int # the last power of 10 to scale the series by
) -> List[list[float]]:
) -> List[List[float]]:
return [scale_values(series, x) for x in range(first_power, last_power)]


Expand Down

0 comments on commit a062d6d

Please sign in to comment.