More commenting

This commit is contained in:
Marian Steinbach 2018-09-25 00:44:21 +02:00
parent a2287388dd
commit a2fd2ce4fb

View file

@ -1,3 +1,7 @@
"""
The jobs module allows to create jobs for the queue and take jobs off the queue
"""
from datetime import datetime
import logging
import os
@ -38,6 +42,7 @@ def directory_entries():
for doc in yaml.load_all(yamlfile):
yield doc
def chunks(the_list, size):
"""
Yield successive n-sized chunks from list the_list