Sfoglia il codice sorgente

clean up useless prints

Joseph Brandenburg 2 settimane fa
parent
commit
29192e3deb
1 ha cambiato i file con 0 aggiunte e 2 eliminazioni
  1. 0 2
      base_definitions.py

+ 0 - 2
base_definitions.py

@@ -900,7 +900,6 @@ class MantisNode:
            nodes are discovered, the method is called by each node in dependency order.
            The first argument MUST be the name of the method as a string.
         """
-        prGreen(self)
         if args[0] == 'call_on_all_ancestors': raise RuntimeError("Very funny!")
         from .utilities import get_all_dependencies
         from collections import deque
@@ -911,7 +910,6 @@ class MantisNode:
         solved = set()
         while can_solve:
             node = can_solve.pop()
-            print(node)
             method = getattr(node, args[0])
             method(*args[0:], **kwargs)
             solved.add(node)