Skip to content

Commit f8c40a9

Browse files
committed
mypy
1 parent b562647 commit f8c40a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

branca/utilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def linear_gradient(hexList: List[str], nColors: int) -> List[str]:
7171
]
7272
result: List[str] = []
7373
step_size = (len(hexList) - 1) / (nColors - 1)
74-
step = 0
74+
step = 0.0
7575
idx = 0
7676
while len(result) < nColors - 1:
7777
start, end = input_color_bytes[idx], input_color_bytes[idx + 1]

0 commit comments

Comments
 (0)