Coverage for corresponding/__init__.py: 0%
5 statements
« prev ^ index » next coverage.py v7.11.0, created at 2025-11-16 22:49 +1300
« prev ^ index » next coverage.py v7.11.0, created at 2025-11-16 22:49 +1300
1from . import datasets
2from .datasets import * # noqa: F403
3from .prediction import (
4 CORRESPONDING_CHROMATICITIES_PREDICTION_MODELS,
5 CorrespondingChromaticitiesPrediction,
6 CorrespondingColourDataset,
7 corresponding_chromaticities_prediction,
8 corresponding_chromaticities_prediction_CIE1994,
9 corresponding_chromaticities_prediction_CMCCAT2000,
10 corresponding_chromaticities_prediction_Fairchild1990,
11 corresponding_chromaticities_prediction_VonKries,
12 corresponding_chromaticities_prediction_Zhai2018,
13)
15__all__ = datasets.__all__
16__all__ += [
17 "CORRESPONDING_CHROMATICITIES_PREDICTION_MODELS",
18 "CorrespondingChromaticitiesPrediction",
19 "CorrespondingColourDataset",
20 "corresponding_chromaticities_prediction",
21 "corresponding_chromaticities_prediction_CIE1994",
22 "corresponding_chromaticities_prediction_CMCCAT2000",
23 "corresponding_chromaticities_prediction_Fairchild1990",
24 "corresponding_chromaticities_prediction_VonKries",
25 "corresponding_chromaticities_prediction_Zhai2018",
26]