Fix lint issues
This commit is contained in:
parent
e60050ed17
commit
80bad7bf8d
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ from . import DataModel
|
|||
|
||||
class ProfileDataModel(DataModel):
|
||||
"""Container to model pre-processed profiling data for analysis."""
|
||||
|
||||
|
||||
def __init__(self) -> None:
|
||||
"""Constructor."""
|
||||
self.times = pd.DataFrame(columns=[
|
||||
|
|
|
@ -63,7 +63,7 @@ class ProfileProcessor(EventHandler):
|
|||
self.functions = functions
|
||||
|
||||
# Temporary buffers
|
||||
# tid ->
|
||||
# tid ->
|
||||
# (list of functions currently executing (ordered by relative depth),
|
||||
# start timestamp of the function)
|
||||
self._current_funcs: Dict[int, List[Tuple[str, int]]] = defaultdict(list)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue