Skip to content

Commit

Permalink
Fix static check
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajastro authored and sunank200 committed Jan 11, 2024
1 parent 25fc963 commit f0967a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/include/tasks/split.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,4 @@ def split_list(urls: list[str], chunk_size: int = 0) -> list[list[str]]:
param urls: URL list we want to chunk
param chunk_size: Max size of chunked list
"""
return [urls[i: i + chunk_size] for i in range(0, len(urls), chunk_size)]
return [urls[i : i + chunk_size] for i in range(0, len(urls), chunk_size)]

0 comments on commit f0967a6

Please sign in to comment.