From 3fea652d16020de148c7537c6c75b50f86030210 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk <21087696+oleksandr-pavlyk@users.noreply.github.com> Date: Fri, 1 Aug 2025 15:03:06 -0500 Subject: [PATCH] Fix type in stub declaration for Benchmark.add_string_axis --- python/cuda/nvbench/__init__.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/cuda/nvbench/__init__.pyi b/python/cuda/nvbench/__init__.pyi index 42169ec..80a6dee 100644 --- a/python/cuda/nvbench/__init__.pyi +++ b/python/cuda/nvbench/__init__.pyi @@ -82,7 +82,7 @@ class Benchmark: def add_float64_axis(self, name: str, values: Sequence[SupportsFloat]) -> Self: "Add floating-point type parameter axis with given name and values to sweep over" ... - def add_string_axis(sef, name: str, values: Sequence[str]) -> Self: + def add_string_axis(self, name: str, values: Sequence[str]) -> Self: "Add string type parameter axis with given name and values to sweep over" ... def set_name(self, name: str) -> Self: