split up metadata PDU API
Some checks failed
Rust/spacepackets/pipeline/head There was a failure building this commit

This commit is contained in:
2023-12-01 15:35:09 +01:00
parent e355de3f10
commit 48b0362dc1
2 changed files with 246 additions and 189 deletions

View File

@ -18,8 +18,12 @@ def generate_cov_report(open_report: bool):
def main():
parser = argparse.ArgumentParser(description="Generate coverage report and optionally open it in a browser")
parser.add_argument("--open", action="store_true", help="Open the coverage report in a browser")
parser = argparse.ArgumentParser(
description="Generate coverage report and optionally open it in a browser"
)
parser.add_argument(
"--open", action="store_true", help="Open the coverage report in a browser"
)
args = parser.parse_args()
generate_cov_report(args.open)