Coverage for curator/curator_cli.py: 0%
4 statements
« prev ^ index » next coverage.py v7.3.0, created at 2023-08-16 15:23 -0600
« prev ^ index » next coverage.py v7.3.0, created at 2023-08-16 15:23 -0600
1"""CLI Wrapper used by run_curator.py"""
2import click
3from curator.singletons import cli
5def main():
6 """Main function called by run_curator.py"""
7 # This is because click uses decorators, and pylint doesn't catch that
8 # pylint: disable=E1120
9 # pylint: disable=E1123
10 cli(obj={})