diff --git a/hta/common/call_stack.py b/hta/common/call_stack.py index 4383ecf..3e7ac2c 100644 --- a/hta/common/call_stack.py +++ b/hta/common/call_stack.py @@ -220,7 +220,7 @@ def __init__( self._construct_call_stack_graph(df) self._compute_depth() - def __repr__(self): + def __repr__(self) -> str: ret = "\n" for key, item in self.nodes.items(): ret = ret + f" {key}: {item}\n"