Minor bugfixes in serial and parallel logic

master
Hoffelhas 2020-03-30 17:07:37 +02:00
parent 347e0afcf1
commit b7ba10c001
1 changed files with 0 additions and 4 deletions

View File

@ -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)