Coverage for install/scipp/binning/__init__.py: 100%
4 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-11-17 01:51 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-11-17 01:51 +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."""
6# ruff: noqa: F403
7from ..core.binning import make_binned, make_histogrammed
9# This makes Sphinx display these functions in the docs.
10make_binned.__module__ = 'scipp.binning'
11make_histogrammed.__module__ = 'scipp.binning'
13__all__ = ['make_binned', 'make_histogrammed']