-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Add `ruff` linting and turn on as many rules as possible. However, I will turn off many and not spend too much time fixing them. In a perfect world, we will try and fix as many of these as possible - as they will generally help with maintenance in the long term. Closes: #231 Refs: #170 Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Nicolas Tessore <[email protected]> Co-authored-by: Saransh Chopra <[email protected]>
- Loading branch information
1 parent
30f86a6
commit e58d861
Showing
32 changed files
with
568 additions
and
382 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,70 +1,71 @@ | ||
"""GLASS package.""" | ||
|
||
import contextlib | ||
from importlib.metadata import PackageNotFoundError | ||
|
||
try: | ||
with contextlib.suppress(PackageNotFoundError): | ||
from ._version import __version__, __version_tuple__ | ||
except PackageNotFoundError: | ||
pass | ||
|
||
from glass.fields import ( | ||
iternorm, | ||
cls2cov, | ||
multalm, | ||
transform_cls, | ||
effective_cls, | ||
gaussian_gls, | ||
lognormal_gls, | ||
generate_gaussian, | ||
generate_lognormal, | ||
getcl, | ||
effective_cls, | ||
iternorm, | ||
lognormal_gls, | ||
multalm, | ||
transform_cls, | ||
) | ||
from glass.galaxies import ( | ||
redshifts, | ||
redshifts_from_nz, | ||
galaxy_shear, | ||
gaussian_phz, | ||
redshifts, | ||
redshifts_from_nz, | ||
) | ||
from glass.lensing import ( | ||
from_convergence, | ||
shear_from_convergence, | ||
MultiPlaneConvergence, | ||
deflect, | ||
from_convergence, | ||
multi_plane_matrix, | ||
multi_plane_weights, | ||
deflect, | ||
shear_from_convergence, | ||
) | ||
from glass.observations import ( | ||
vmap_galactic_ecliptic, | ||
equal_dens_zbins, | ||
fixed_zbins, | ||
gaussian_nz, | ||
smail_nz, | ||
fixed_zbins, | ||
equal_dens_zbins, | ||
tomo_nz_gausserr, | ||
vmap_galactic_ecliptic, | ||
) | ||
from glass.points import ( | ||
effective_bias, | ||
linear_bias, | ||
loglinear_bias, | ||
position_weights, | ||
positions_from_delta, | ||
uniform_positions, | ||
position_weights, | ||
) | ||
from glass.shapes import ( | ||
triaxial_axis_ratio, | ||
ellipticity_ryden04, | ||
ellipticity_gaussian, | ||
ellipticity_intnorm, | ||
ellipticity_ryden04, | ||
triaxial_axis_ratio, | ||
) | ||
from glass.shells import ( | ||
distance_weight, | ||
volume_weight, | ||
RadialWindow, | ||
combine, | ||
cubic_windows, | ||
density_weight, | ||
tophat_windows, | ||
distance_grid, | ||
distance_weight, | ||
linear_windows, | ||
cubic_windows, | ||
restrict, | ||
partition, | ||
redshift_grid, | ||
distance_grid, | ||
combine, | ||
RadialWindow, | ||
restrict, | ||
tophat_windows, | ||
volume_weight, | ||
) | ||
from glass.user import save_cls, load_cls, write_catalog | ||
from glass.user import load_cls, save_cls, write_catalog |
Oops, something went wrong.