Skip to content

Commit ad2d322

Browse files
change to top 15 repos from 10
1 parent 77af6ac commit ad2d322

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ A listed repository should be deprecated if:
2020
___
2121

2222
- All repos/links status including last commit date is updated daily
23-
- 10 Highest ranked repos/links for each section are displayed on main README.md and full list is available within the wiki page
23+
- Only 15 Highest ranked repos/links for each section are displayed on main README.md and full list is available within the wiki page
2424
- Both Wikis/README.md is updated in realtime as soon as new information are pushed to the repo
2525
___
2626

wiki_gen.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def generate_wiki_per_category(output_path, update_readme: bool = True):
6868
# only display top 5, then expandable for extra 5
6969
with open(os.path.join(PROJECT_ROOT_DIR, 'README.md'), 'w') as f:
7070

71-
table_str = formatted_df.iloc[:10].to_markdown(index=False)
71+
table_str = formatted_df.iloc[:15].to_markdown(index=False)
7272
new_str = f"<!-- [PLACEHOLDER_START:{clean_category_name}] --> \n"
7373
new_str += table_str
7474
new_str += f"<!-- [PLACEHOLDER_END:{clean_category_name}] -->"

0 commit comments

Comments
 (0)