Skip to content

Commit

Permalink
Updated display for new info
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasAndradeDias committed Mar 10, 2024
1 parent fb41292 commit dd8d256
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 5 additions & 1 deletion src/outliner/modules/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,12 @@ def tree(self):
else "CHILD_WITH_EXECEPTION"
)
]
+ f"{position}. "
+ f"{str(position)}. "
+ func
+ " " * (50 - len(func))
+ str(self.detail_data[func]["file"].name)
+ " "
+ str(self.detail_data[func]["start_line"])
+ "\n"
+ self.ansi_for_tree["RESET"]
)
Expand Down
3 changes: 0 additions & 3 deletions src/outliner/modules/trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,6 @@ def trace_obj(self, running_obj: RunningObject):
raise Exception(f"Given object '{running_obj}' is not callable.")
self._running_trace(running_obj)

def abc(self):
print("")

def __str__(self):
text = "Trace object\nrunned objects:\n "

Expand Down

0 comments on commit dd8d256

Please sign in to comment.