Skip to content

Commit

Permalink
[add] Vanity badges
Browse files Browse the repository at this point in the history
  • Loading branch information
lpascal-ledger committed Oct 18, 2023
1 parent 7926555 commit a06da0a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Ledgered

[![codecov](https://codecov.io/gh/LedgerHQ/ledgered/graph/badge.svg?token=0mwgQwrusz)](https://codecov.io/gh/LedgerHQ/ledgered)
[![CodeQL](https://github.com/LedgerHQ/ledgered/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/LedgerHQ/ledgered/actions/workflows/codeql-analysis.yml)

This repository aims at regrouping three other somehow similar yet different repositories / libraries:

- [LedgerComm](https://github.com/LedgerHQ/ledgercomm)
Expand Down
4 changes: 2 additions & 2 deletions src/ledgered/utils/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def from_path(path: Path) -> "RepoManifest":
# CLI-oriented code #


def parse_args() -> Namespace:
def parse_args() -> Namespace: # pragma: no cover
parser = ArgumentParser()
parser.add_argument("manifest",
type=Path,
Expand Down Expand Up @@ -124,7 +124,7 @@ def parse_args() -> Namespace:
return parser.parse_args()


def main():
def main(): # pragma: no cover
args = parse_args()
assert args.manifest.is_file(), f"'{args.manifest.resolve()}' does not appear to be a file."
manifest = args.manifest.resolve()
Expand Down

0 comments on commit a06da0a

Please sign in to comment.