mirror of https://github.com/Hoffelhas/autodoist
Update autodoist.py
Fixed bug in which checked children were still processed in the sequential looppull/15/head
parent
f021a84bf7
commit
a106464764
|
@ -169,8 +169,9 @@ def main():
|
||||||
|
|
||||||
for item in items:
|
for item in items:
|
||||||
|
|
||||||
# Check for child_items
|
# Determine which child_items exist that have not been checked yet
|
||||||
child_items = list(filter(lambda x: x['parent_id'] == item['id'], items))
|
non_checked_items = list(filter(lambda x: x['checked'] == 0, items))
|
||||||
|
child_items = list(filter(lambda x: x['parent_id'] == item['id'], non_checked_items))
|
||||||
|
|
||||||
if not args.recurring:
|
if not args.recurring:
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue