diff --git a/orchestra/cmds/graph.py b/orchestra/cmds/graph.py
index e094b137be5930ce8e36b20da5c56bc2612805d4..9d544a71e31f7ec625a3feb52bd509dca037e05b 100644
--- a/orchestra/cmds/graph.py
+++ b/orchestra/cmds/graph.py
@@ -8,7 +8,6 @@ def install_subcommand(sub_argparser):
 
 
 def handle_graph(args, config, index: ComponentIndex):
-    # TODO: this function prints duplicate edges
     if args.component:
         actions = [index.get_build(args.component).install]
     else:
diff --git a/orchestra/executor.py b/orchestra/executor.py
index 70f35fb4f42092df82ea7422edfe96a71fe0df7c..ce02fc8509762f64132e15fe46dcf5394cdc17e6 100644
--- a/orchestra/executor.py
+++ b/orchestra/executor.py
@@ -33,12 +33,6 @@ class Executor:
                 else:
                     self._schedule_next()
 
-        # Todo: remove these 4 lines
-        if self._pending_actions:
-            logging.error("Could not schedule any action, something failed")
-            logging.error(f"Remaining: {self._pending_actions}")
-            breakpoint()
-
     def _collect_actions(self, action: Action, force=False):
         if not force and action.is_satisfied():
             return