Coverage for install/scipp/binning/__init__.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.4.0, created at 2024-04-28 01:28 +0000

1# SPDX-License-Identifier: BSD-3-Clause 

2# Copyright (c) 2023 Scipp contributors (https://github.com/scipp) 

3# @author Simon Heybrock 

4"""Sub-package for lower-level control over binning and histogramming.""" 

5 

6# ruff: noqa: F403 

7from ..core.binning import make_binned, make_histogrammed 

8 

9# This makes Sphinx display these functions in the docs. 

10make_binned.__module__ = 'scipp.binning' 

11make_histogrammed.__module__ = 'scipp.binning' 

12 

13__all__ = ['make_binned', 'make_histogrammed']