Skip to content

Commit 3e5b90a

Browse files
committed
Fix typing
1 parent 886cf24 commit 3e5b90a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

awswrangler/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def chunkify(lst: List[Any], num_chunks: int = 1, max_length: Optional[int] = No
227227
if not lst:
228228
return []
229229
n: int = num_chunks if max_length is None else int(math.ceil((float(len(lst)) / float(max_length))))
230-
np_chunks = np.array_split(lst, n) # type: ignore
230+
np_chunks = np.array_split(lst, n)
231231
return [arr.tolist() for arr in np_chunks if len(arr) > 0]
232232

233233

0 commit comments

Comments
 (0)