File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
autoarray/dataset/interferometer Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,10 @@ def __init__(
105105 self .w_tilde = w_tilde
106106
107107 if raise_error_dft_visibilities_limit :
108- if self .uv_wavelengths .shape [0 ] > 10000 and transformer_class == TransformerDFT :
108+ if (
109+ self .uv_wavelengths .shape [0 ] > 10000
110+ and transformer_class == TransformerDFT
111+ ):
109112 raise exc .DatasetException (
110113 """
111114 Interferometer datasets with more than 10,000 visibilities should use the TransformerNUFFT class for
Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ dependencies = [
3232 " matplotlib>=3.7.0" ,
3333 " scipy<=1.14.0" ,
3434 " scikit-image<=0.24.0" ,
35- " scikit-learn<=1.5.1"
35+ " scikit-learn<=1.5.1" ,
36+ " tqdm"
3637]
3738
3839[project .urls ]
You can’t perform that action at this time.
0 commit comments