Skip to content

Commit 5f67f6c

Browse files
authored
Merge pull request #215 from bobleesj/mv-input-scattering-quan
Rename `input_scattering_quantity` to `input_data` in `DiffractionObject` init
2 parents fce1a32 + f311988 commit 5f67f6c

File tree

3 files changed

+30
-7
lines changed

3 files changed

+30
-7
lines changed

news/mv-input-scattering-quan.rst

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
**Added:**
2+
3+
* <news item>
4+
5+
**Changed:**
6+
7+
* Rename `input_scattering_quantity` to `input_data` in `DiffractionObject` init
8+
9+
**Deprecated:**
10+
11+
* <news item>
12+
13+
**Removed:**
14+
15+
* <news item>
16+
17+
**Fixed:**
18+
19+
* <news item>
20+
21+
**Security:**
22+
23+
* <news item>

src/diffpy/utils/diffraction_objects.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def _xtype_wmsg(xtype):
2929
def _setter_wmsg(attribute):
3030
return (
3131
f"Direct modification of attribute '{attribute}' is not allowed. "
32-
f"Please use 'insert_scattering_quantity' to modify '{attribute}'.",
32+
f"Please use 'input_data' to modify '{attribute}'.",
3333
)
3434

3535

@@ -53,7 +53,7 @@ def __init__(
5353
if yarray is None:
5454
yarray = np.empty(0)
5555

56-
self.insert_scattering_quantity(xarray, yarray, xtype)
56+
self.input_data(xarray, yarray, xtype)
5757

5858
def __eq__(self, other):
5959
if not isinstance(other, DiffractionObject):
@@ -317,7 +317,7 @@ def _set_xarrays(self, xarray, xtype):
317317
self.dmin = np.nanmin(self._all_arrays[:, 3], initial=np.inf)
318318
self.dmax = np.nanmax(self._all_arrays[:, 3], initial=0.0)
319319

320-
def insert_scattering_quantity(
320+
def input_data(
321321
self,
322322
xarray,
323323
yarray,
@@ -351,7 +351,7 @@ def insert_scattering_quantity(
351351
if len(xarray) != len(yarray):
352352
raise ValueError(
353353
"'xarray' and 'yarray' must have the same length. "
354-
"Please re-initialize 'DiffractionObject' or re-run the method 'insert_scattering_quantity' "
354+
"Please re-initialize 'DiffractionObject' or re-run the method 'input_data' "
355355
"with 'xarray' and 'yarray' of identical length."
356356
)
357357

tests/test_diffraction_objects.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ def test_all_array_setter():
364364
with pytest.raises(
365365
AttributeError,
366366
match="Direct modification of attribute 'all_arrays' is not allowed. "
367-
"Please use 'insert_scattering_quantity' to modify 'all_arrays'.",
367+
"Please use 'input_data' to modify 'all_arrays'.",
368368
):
369369
actual_do.all_arrays = np.empty((4, 4))
370370

@@ -373,7 +373,7 @@ def test_xarray_yarray_length_mismatch():
373373
with pytest.raises(
374374
ValueError,
375375
match="'xarray' and 'yarray' must have the same length. "
376-
"Please re-initialize 'DiffractionObject' or re-run the method 'insert_scattering_quantity' "
376+
"Please re-initialize 'DiffractionObject' or re-run the method 'input_data' "
377377
"with 'xarray' and 'yarray' of identical length",
378378
):
379379
DiffractionObject(xarray=np.array([1.0, 2.0]), yarray=np.array([0.0, 0.0, 0.0]))
@@ -391,7 +391,7 @@ def test_input_xtype_setter():
391391
with pytest.raises(
392392
AttributeError,
393393
match="Direct modification of attribute 'input_xtype' is not allowed. "
394-
"Please use 'insert_scattering_quantity' to modify 'input_xtype'.",
394+
"Please use 'input_data' to modify 'input_xtype'.",
395395
):
396396
do.input_xtype = "q"
397397

0 commit comments

Comments
 (0)