Coverage for src/scipy_dataclassfitparams/__init__.py: 100%

9 statements  

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

1 

2__all__ = [ 

3 "bounded", "const", "regular", "same_as", 

4 "CovMatrix", "FitResult", "FullFitResult", "make_fit", 

5 "clear_cache", "dump_result" 

6] 

7 

8from ._fields import bounded, const, regular, same_as 

9from ._make_fit import CovMatrix, FitResult, FullFitResult, make_fit 

10from ._spec_registry import clear_cache 

11from ._dump_result import dump_result 

12 

13__author__ = "devds96" 

14__email__ = "src.devds96@gmail.com" 

15__license__ = "MIT" 

16__version__ = "0.1.0"