Skip to content

Commit 744f3fc

Browse files
committed
fix: discard 'apps' folder when listing manufacturers
1 parent 3e8a238 commit 744f3fc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/probeinterface/library.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,5 +291,5 @@ def list_github_folders(owner: str, repo: str, path: str = "", ref: str = None,
291291
return [
292292
item["name"]
293293
for item in items
294-
if item.get("type") == "dir" and item["name"][0] != "." and item["name"] != "scripts"
294+
if item.get("type") == "dir" and item["name"][0] != "." and item["name"] not in ["scripts", "apps"]
295295
]

0 commit comments

Comments
 (0)