Skip to content

Commit 8efbb07

Browse files
authored
Merge pull request #388 from FoamyGuy/show_total_libraries
show total libraries too
2 parents e516742 + 82d8efc commit 8efbb07

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

adabot/circuitpython_libraries.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,10 @@ def run_library_checks(validators, kw_args, error_depth):
229229
community_bundle_submodules = resp.text
230230
community_library_count = community_bundle_submodules.count("submodule")
231231
logger.info(
232-
"* Adafruit Libraries: %s Community Libraries: %s",
232+
"* Adafruit Libraries: %s Community Libraries: %s (Total: %s)",
233233
len(bundle_submodules),
234234
community_library_count,
235+
len(bundle_submodules) + community_library_count,
235236
)
236237
print_pr_overview(lib_insights)
237238
logger.info(" * Merged pull requests:")

0 commit comments

Comments
 (0)