File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ def labeled_comprehension(
88
88
labels : onp .ToComplex | onp .ToComplexND | None ,
89
89
index : onp .ToInt | onp .ToIntND | None ,
90
90
func : _ComprehensionFunc ,
91
- out_dtype : onp .AnyFloat64DType ,
91
+ out_dtype : onp .AnyFloat64DType | None ,
92
92
default : onp .ToFloat ,
93
93
pass_positions : bool = False ,
94
94
) -> onp .ArrayND [np .float64 ]: ...
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ def gaussian_kernel_estimate(
111
111
values : onp .Array2D [_Real ],
112
112
xi : onp .Array2D [_AsReal ],
113
113
cho_cov : onp .Array2D [_AsReal ],
114
- dtype : onp .AnyFloat64DType ,
114
+ dtype : onp .AnyFloat64DType | None ,
115
115
_ : _Real | float = 0.0 ,
116
116
) -> onp .Array2D [np .float64 ]: ...
117
117
@overload
@@ -140,7 +140,7 @@ def gaussian_kernel_estimate_log(
140
140
values : onp .Array2D [_Real ],
141
141
xi : onp .Array2D [_AsReal ],
142
142
cho_cov : onp .Array2D [_AsReal ],
143
- dtype : onp .AnyFloat64DType ,
143
+ dtype : onp .AnyFloat64DType | None ,
144
144
_ : _Real | float = 0.0 ,
145
145
) -> onp .Array2D [np .float64 ]: ...
146
146
@overload
You can’t perform that action at this time.
0 commit comments