Skip to content

Commit eb68180

Browse files
committed
Remove default_new_input from avaiable models
1 parent ed8ad6d commit eb68180

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/muse/examples.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,12 @@ def example_data_dir() -> Path:
4747

4848
def available_examples() -> list[str]:
4949
"""List examples available in the examples folder."""
50-
return [d.stem for d in example_data_dir().iterdir() if d.is_dir()]
50+
# temporary skip for default_new_input as this is not yet working
51+
return [
52+
d.stem
53+
for d in example_data_dir().iterdir()
54+
if d.is_dir() and d.name != "default_new_input"
55+
]
5156

5257

5358
def model(name: str = "default") -> MCA:

0 commit comments

Comments
 (0)