Skip to content
Snippets Groups Projects
Commit e6276945 authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Move default args into a property to avoid calling at init

parent 26822050
No related branches found
No related tags found
1 merge request!351Resolve "bilby-0.3.6 doesn't declare dependency on astropy"
Pipeline #48194 passed
......@@ -17,12 +17,14 @@ except ImportError:
class Cosmological(Interped):
_default_args_dict = dict(
redshift=dict(name='redshift', latex_label='$z$', unit=None),
luminosity_distance=dict(
name='luminosity_distance', latex_label='$d_L$', unit='Mpc'),
comoving_distance=dict(
name='comoving_distance', latex_label='$d_C$', unit='Mpc'))
@property
def _default_args_dict(self):
return dict(
redshift=dict(name='redshift', latex_label='$z$', unit=None),
luminosity_distance=dict(
name='luminosity_distance', latex_label='$d_L$', unit=units.Mpc),
comoving_distance=dict(
name='comoving_distance', latex_label='$d_C$', unit=units.Mpc))
def __init__(self, minimum, maximum, cosmology=None, name=None,
latex_label=None, unit=None):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment