mirror of https://github.com/Hoffelhas/autodoist
Minor bugfixes in serial and parallel logic
parent
f82e9b77f5
commit
3e1e46eed1
|
@ -136,8 +136,6 @@ def main():
|
|||
else:
|
||||
for project in api.projects.all():
|
||||
|
||||
print(project['name'])
|
||||
|
||||
# Get project type
|
||||
project_type, project_type_changed = get_project_type(project)
|
||||
logging.debug('Project \'%s\' being processed as %s', project['name'], project_type)
|
||||
|
@ -166,8 +164,6 @@ def main():
|
|||
if item['checked'] == 1:
|
||||
continue
|
||||
|
||||
print(item['content'])
|
||||
|
||||
# Check item type
|
||||
item_type, item_type_changed = get_item_type(item, project_type)
|
||||
logging.debug('Identified \'%s\' as %s type', item['content'], item_type)
|
||||
|
|
Loading…
Reference in New Issue