Skip to content

Commit

Permalink
show total libraries too
Browse files Browse the repository at this point in the history
  • Loading branch information
FoamyGuy committed Nov 12, 2024
1 parent e516742 commit 7870441
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion adabot/circuitpython_libraries.py
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,10 @@ def run_library_checks(validators, kw_args, error_depth):
community_bundle_submodules = resp.text
community_library_count = community_bundle_submodules.count("submodule")
logger.info(
"* Adafruit Libraries: %s Community Libraries: %s",
"* Adafruit Libraries: %s Community Libraries: %s (Total: %s)",
len(bundle_submodules),
community_library_count,
len(bundle_submodules) + community_bundle_submodules,
)
print_pr_overview(lib_insights)
logger.info(" * Merged pull requests:")
Expand Down

0 comments on commit 7870441

Please sign in to comment.