We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05a9325 commit cb0f61cCopy full SHA for cb0f61c
1 file changed
sql_athame/dataclasses.py
@@ -595,5 +595,7 @@ async def replace_multiple_reporting_differences(
595
596
597
def chunked(lst, n):
598
+ if type(lst) is not list:
599
+ lst = list(lst)
600
for i in range(0, len(lst), n):
601
yield lst[i : i + n]
0 commit comments