Coverage for python/lsst/daf/butler/__init__.py: 100%

10 statements  

« prev     ^ index     » next       coverage.py v7.2.5, created at 2023-05-06 09:31 +0000

1""" 

2Data Access Butler 

3""" 

4 

5# Some components are not auto-imported since they can have additional runtime 

6# dependencies. 

7 

8from ._butler import * 

9from ._butlerConfig import * 

10from ._butlerRepoIndex import * 

11from ._deferredDatasetHandle import * 

12from ._limited_butler import * 

13from ._quantum_backed import * 

14from .core import * 

15 

16# Import the registry subpackage directly for other symbols. 

17from .registry import CollectionSearch, CollectionType, Registry, RegistryConfig 

18from .transfers import YamlRepoExportBackend, YamlRepoImportBackend 

19from .version import *