Coverage for pesummary/cli/summaryversion.py: 100.0%
6 statements
« prev ^ index » next coverage.py v7.4.4, created at 2024-12-09 22:34 +0000
« prev ^ index » next coverage.py v7.4.4, created at 2024-12-09 22:34 +0000
1#! /usr/bin/env python
3# Licensed under an MIT style license -- see LICENSE.md
5from pesummary import __version__
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"""
12def main(args=None):
13 """Top level interface for `summaryversion`
14 """
15 print(__version__)
16 return