feat: ozon sync
This commit is contained in:
3
utils/list_utils.py
Normal file
3
utils/list_utils.py
Normal file
@@ -0,0 +1,3 @@
|
||||
def chunk_list(lst, n) -> list:
|
||||
for i in range(0, len(lst), n):
|
||||
yield lst[i:i + n]
|
||||
Reference in New Issue
Block a user