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

5 statements  

« prev     ^ index     » next       coverage.py v6.5.0, created at 2023-10-06 06:59 +0000

1# http://pyrocko.org - GPLv3 

2# 

3# The Pyrocko Developers, 21st Century 

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

5 

6''' 

7Implementations of the various Squirrel tool subcommands. 

8''' 

9 

10import pkgutil 

11 

12command_modules = [] 

13 

14for _, modname, ispkg in pkgutil.iter_modules(__path__, __name__ + '.'): 

15 command_modules.append(__import__(modname, fromlist='dummy'))