Coverage for python / lsst / resources / __init__.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-04-17 08:44 +0000

1# This file is part of lsst-resources. 

2# 

3# Developed for the LSST Data Management System. 

4# This product includes software developed by the LSST Project 

5# (https://www.lsst.org). 

6# See the COPYRIGHT file at the top-level directory of this distribution 

7# for details of code ownership. 

8# 

9# Use of this source code is governed by a 3-clause BSD-style 

10# license that can be found in the LICENSE file. 

11 

12 

13"""ResourcePath is a package for abstracting access to local or remote files.""" 

14 

15__all__ = ( 

16 "ResourceHandleProtocol", 

17 "ResourceInfo", 

18 "ResourcePath", 

19 "ResourcePathExpression", 

20) 

21 

22 

23from ._resourceHandles import ResourceHandleProtocol 

24 

25# Should only expose ResourcePath and its input type alias 

26from ._resourcePath import ResourceInfo, ResourcePath, ResourcePathExpression 

27from .version import *