Remove prints
1 files changed, 0 insertions(+), 2 deletions(-) M live_doc/wrap/thread_seq.py
M live_doc/wrap/thread_seq.py => live_doc/wrap/thread_seq.py +0 -2
@@ 64,7 64,6 @@ TODO Entries are bit messy.""" def add(self, added): self.append(added) if len(self) == 1: # Should be no active thread, so start first. print("ADDSTART") self[0][2].start() @@ def next(self): 75,7 74,6 @@ TODO Entries are bit messy.""" break if len(self) > 1: print("NEXTSTART") assert isinstance(self[1][2], Thread), \ "\n\n".join(map(repr, self)) + f"\n\n{len(self)}" self[1][2].start() # Start the next one.