Skip to content

Commit b8eced4

Browse files
Improve docstring documentation
1 parent 28367f0 commit b8eced4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

wf_psf/SimPSFToolkit.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,8 @@ class SimPSFToolkit(object):
7979
Number of points to interpolate in between SED values. It can be 0, 1 or 2.
8080
extrapolate: bool
8181
SED interpolation mode. Default mode uses extrapolation.
82+
SED_interp_kind: str
83+
SED interpolation kind. Options are `'cubic'` or `'linear'`.
8284
8385
"""
8486

@@ -102,7 +104,7 @@ def __init__(
102104
SED_sigma=0,
103105
interp_pts_per_bin=0,
104106
extrapolate=True,
105-
SED_interp_kind='cubic'
107+
SED_interp_kind='linear'
106108
):
107109
# Input attributes
108110
self.max_order = max_order

0 commit comments

Comments
 (0)