Skip to content

Commit 3fea652

Browse files
Fix type in stub declaration for Benchmark.add_string_axis
1 parent f1fbfd8 commit 3fea652

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/cuda/nvbench/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class Benchmark:
8282
def add_float64_axis(self, name: str, values: Sequence[SupportsFloat]) -> Self:
8383
"Add floating-point type parameter axis with given name and values to sweep over"
8484
...
85-
def add_string_axis(sef, name: str, values: Sequence[str]) -> Self:
85+
def add_string_axis(self, name: str, values: Sequence[str]) -> Self:
8686
"Add string type parameter axis with given name and values to sweep over"
8787
...
8888
def set_name(self, name: str) -> Self:

0 commit comments

Comments
 (0)