Coverage for /usr/local/lib/python3.11/dist-packages/pyrocko/squirrel/tool/__init__.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v6.5.0, created at 2024-03-07 11:54 +0000

1# http://pyrocko.org - GPLv3 

2# 

3# The Pyrocko Developers, 21st Century 

4# ---|P------/S----------~Lg---------- 

5 

6''' 

7Squirrel command line tools. 

8''' 

9 

10from . import cli, common 

11from .cli import * # noqa 

12from .common import * # noqa 

13 

14__all__ = cli.__all__ + common.__all__