Skip to content

Commit de64f5e

Browse files
committed
Remove a bunch of incorrect trailing commas
1 parent 29ec4d6 commit de64f5e

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

array_api_compat/cupy/fft.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@
1313

1414
import cupy as cp
1515

16-
fft = get_xp(cp)(_fft.fft),
17-
ifft = get_xp(cp)(_fft.ifft),
18-
fftn = get_xp(cp)(_fft.fftn),
19-
ifftn = get_xp(cp)(_fft.ifftn),
20-
rfft = get_xp(cp)(_fft.rfft),
21-
irfft = get_xp(cp)(_fft.irfft),
22-
rfftn = get_xp(cp)(_fft.rfftn),
23-
irfftn = get_xp(cp)(_fft.irfftn),
24-
hfft = get_xp(cp)(_fft.hfft),
25-
ihfft = get_xp(cp)(_fft.ihfft),
26-
fftfreq = get_xp(cp)(_fft.fftfreq),
27-
rfftfreq = get_xp(cp)(_fft.rfftfreq),
28-
fftshift = get_xp(cp)(_fft.fftshift),
29-
ifftshift = get_xp(cp)(_fft.ifftshift),
16+
fft = get_xp(cp)(_fft.fft)
17+
ifft = get_xp(cp)(_fft.ifft)
18+
fftn = get_xp(cp)(_fft.fftn)
19+
ifftn = get_xp(cp)(_fft.ifftn)
20+
rfft = get_xp(cp)(_fft.rfft)
21+
irfft = get_xp(cp)(_fft.irfft)
22+
rfftn = get_xp(cp)(_fft.rfftn)
23+
irfftn = get_xp(cp)(_fft.irfftn)
24+
hfft = get_xp(cp)(_fft.hfft)
25+
ihfft = get_xp(cp)(_fft.ihfft)
26+
fftfreq = get_xp(cp)(_fft.fftfreq)
27+
rfftfreq = get_xp(cp)(_fft.rfftfreq)
28+
fftshift = get_xp(cp)(_fft.fftshift)
29+
ifftshift = get_xp(cp)(_fft.ifftshift)
3030

3131
__all__ = fft_all + _fft.__all__
3232

0 commit comments

Comments
 (0)