From 2182b4fa6e06b8c967f59f4c205c4842119aa1d1 Mon Sep 17 00:00:00 2001 From: Thomas Li <47963215+lithomas1@users.noreply.github.com> Date: Tue, 15 Oct 2024 15:44:21 -0400 Subject: [PATCH] update comment --- array_api_compat/dask/array/fft.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/array_api_compat/dask/array/fft.py b/array_api_compat/dask/array/fft.py index 74de1df6..aebd86f7 100644 --- a/array_api_compat/dask/array/fft.py +++ b/array_api_compat/dask/array/fft.py @@ -1,7 +1,7 @@ from dask.array.fft import * # noqa: F403 -# cupy.fft doesn't have __all__. If it is added, replace this with +# dask.array.fft doesn't have __all__. If it is added, replace this with # -# from cupy.fft import __all__ as linalg_all +# from dask.array.fft import __all__ as linalg_all _n = {} exec('from dask.array.fft import *', _n) del _n['__builtins__']