Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions hta/common/trace_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def __call__(


class NameStringColumnFilter(Filter):
def __init__(self, name_pattern: str):
def __init__(self, name_pattern: str) -> None:
self.name_pattern = name_pattern

def __call__(
Expand Down Expand Up @@ -319,7 +319,7 @@ def __call__(

def _filter_gpu_kernels_with_cuda_sync(
df: pd.DataFrame, symbol_table: TraceSymbolTable
):
) -> pd.Series:
"""Helper function that finds rows in the dataframe that are either
GPU kernels or CUDA synchronization events."""

Expand Down
Loading