diff --git a/src/probeinterface/library.py b/src/probeinterface/library.py index f719ff6b..57a1e733 100644 --- a/src/probeinterface/library.py +++ b/src/probeinterface/library.py @@ -291,5 +291,5 @@ def list_github_folders(owner: str, repo: str, path: str = "", ref: str = None, return [ item["name"] for item in items - if item.get("type") == "dir" and item["name"][0] != "." and item["name"] != "scripts" + if item.get("type") == "dir" and item["name"][0] != "." and item["name"] not in ["scripts", "apps"] ]