Coverage for pesummary/cli/summaryversion.py: 100.0%

6 statements  

« prev     ^ index     » next       coverage.py v7.4.4, created at 2024-05-02 08:42 +0000

1#! /usr/bin/env python 

2 

3# Licensed under an MIT style license -- see LICENSE.md 

4 

5from pesummary import __version__ 

6 

7__author__ = ["Charlie Hoy <charlie.hoy@ligo.org>"] 

8__doc__ = """This executable is used to display the version of PESummary that 

9is currently being used""" 

10 

11 

12def main(args=None): 

13 """Top level interface for `summaryversion` 

14 """ 

15 print(__version__) 

16 return