From 3e1e46eed177aab200f87cbb60ae5a30a291bcd7 Mon Sep 17 00:00:00 2001
From: Alexander Haselhoff <alexander.haselhoff@outlook.com>
Date: Mon, 30 Mar 2020 17:07:37 +0200
Subject: [PATCH] Minor bugfixes in serial and parallel logic

---
 nextaction.py | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/nextaction.py b/nextaction.py
index 02ddc93..e661b6d 100755
--- a/nextaction.py
+++ b/nextaction.py
@@ -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)