diff options
| author | Aaron Meurer <asmeurer@gmail.com> | 2021-07-09 17:58:39 -0600 |
|---|---|---|
| committer | Aaron Meurer <asmeurer@gmail.com> | 2021-07-09 17:58:39 -0600 |
| commit | 6765494edee2b90f239ae622abb5f3a7d218aa84 (patch) | |
| tree | 994920cfe1488098b26028eb2a87df0a5134b864 /numpy/_array_api | |
| parent | 639aa7cd7ce02b741376c6c10226a6014310fc0b (diff) | |
| download | numpy-6765494edee2b90f239ae622abb5f3a7d218aa84.tar.gz | |
Fix typo
Diffstat (limited to 'numpy/_array_api')
| -rw-r--r-- | numpy/_array_api/_dtypes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/_array_api/_dtypes.py b/numpy/_array_api/_dtypes.py index 1bec88c36..b183c800f 100644 --- a/numpy/_array_api/_dtypes.py +++ b/numpy/_array_api/_dtypes.py @@ -17,7 +17,7 @@ bool = np.dtype('bool') _all_dtypes = (int8, int16, int32, int64, uint8, uint16, uint32, uint64, float32, float64, bool) -_boolean_dtypes = (bool) +_boolean_dtypes = (bool,) _floating_dtypes = (float32, float64) _integer_dtypes = (int8, int16, int32, int64, uint8, uint16, uint32, uint64) _integer_or_boolean_dtypes = (bool, int8, int16, int32, int64, uint8, uint16, uint32, uint64) |
