summaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
authorRaghuveer Devulapalli <raghuveer.devulapalli@intel.com>2022-07-27 12:36:19 -0700
committerRaghuveer Devulapalli <raghuveer.devulapalli@intel.com>2022-09-26 09:52:18 -0700
commit80f0015c53f25d7b53d362d8b76356f221924c5d (patch)
tree6b26f07640b063b3e9013e06d81d72e0850fe54e /benchmarks
parent8dd67610592c9dea41f1b50de9235dffe0b227fa (diff)
downloadnumpy-80f0015c53f25d7b53d362d8b76356f221924c5d.tar.gz
MAINT: Fix linter error
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/benchmarks/bench_ufunc_strides.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/benchmarks/benchmarks/bench_ufunc_strides.py b/benchmarks/benchmarks/bench_ufunc_strides.py
index ab076f9bc..f80bf90f9 100644
--- a/benchmarks/benchmarks/bench_ufunc_strides.py
+++ b/benchmarks/benchmarks/bench_ufunc_strides.py
@@ -9,7 +9,7 @@ UNARY_OBJECT_UFUNCS.remove(getattr(np, 'invert'))
stride = [1, 2, 4]
stride_out = [1, 2, 4]
-dtype = ['e', 'f', 'd']
+dtype = ['e', 'f', 'd']
class Unary(Benchmark):
params = [UNARY_OBJECT_UFUNCS, stride, stride_out, dtype]