19 lines
344 B
Python
19 lines
344 B
Python
import argparse
|
|
import logging
|
|
|
|
|
|
def cli():
|
|
parser = argparse.ArgumentParser(
|
|
description="$REPO_DESCRIPTION",
|
|
formatter_class=argparse.RawTextHelpFormatter
|
|
)
|
|
|
|
parser.add_argument(
|
|
"--debug",
|
|
action="store_true",
|
|
help="Sets the logging level to debug."
|
|
)
|
|
|
|
args = parser.parse_args()
|
|
|