Skip to content

Commit 35b9937

Browse files
committed
Use correct return type
1 parent 89cf198 commit 35b9937

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ess/dream/io/cif.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def prepare_reduced_dspacing_cif(
1515
"""Construct a CIF builder with reduced data in d-spacing.
1616
1717
The object contains the d-spacing coordinate, intensities,
18-
and a number of metadata.
18+
and some metadata.
1919
2020
Parameters
2121
----------
@@ -33,7 +33,7 @@ def prepare_reduced_dspacing_cif(
3333
from .. import __version__
3434

3535
to_save = _prepare_data(da)
36-
return (
36+
return ReducedDspacingCIF(
3737
cif.CIF('reduced_dspacing')
3838
.with_reducers(f'ess.dream v{__version__}')
3939
.with_authors(*authors)

0 commit comments

Comments
 (0)