From 62f954cf1afc8bfc17ef3622154f3ec025a1b69e Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Wed, 9 Apr 2025 11:50:10 +0200 Subject: Fixed topic to winc --- tools/projects.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/projects.py b/tools/projects.py index bf3c72f..65cea8d 100644 --- a/tools/projects.py +++ b/tools/projects.py @@ -110,7 +110,9 @@ def fetch_github_data(): if response.status_code == 200: repos = response.json() for repo in repos: - if "include" in repo["topics"]: + # Check if repository has "winc" topic. This means I want to include + # this repository on this page. + if "winc" in repo["topics"]: include_repositories.append(repo) else: print(f"Failed to retrieve repositories: {response.status_code}") -- cgit v1.2.3