Skip to content

Commit f5b014d

Browse files
authored
Merge pull request #319 from tekktrik/main
Add missing enumerate()
2 parents edd2cff + 9f0e36d commit f5b014d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adabot/circuitpython_libraries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ def run_library_checks(validators, kw_args, error_depth):
317317
len(lib_stats),
318318
)
319319
logger.info("* **Top 10 Libraries by PyPI Downloads**")
320-
for index, (lib_stat_name, lib_stat_dl) in lib_stats.items():
320+
for index, (lib_stat_name, lib_stat_dl) in enumerate(lib_stats.items()):
321321
if index == 10:
322322
break
323323
logger.info(

0 commit comments

Comments
 (0)