Coverage for local_installation_linux / mumott / data_handling / __init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.13.0, created at 2026-01-27 08:13 +0000
« prev ^ index » next coverage.py v7.13.0, created at 2026-01-27 08:13 +0000
1# -*- coding: utf-8 -*-
3"""
4This module provides functionality for loading, accessing, and manipulating
5pre-processed data from tensor tomographic experiments.
6"""
8from .data_container import DataContainer
10__all__ = [
11 'DataContainer',
12]