We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed8ad6d commit eb68180Copy full SHA for eb68180
1 file changed
src/muse/examples.py
@@ -47,7 +47,12 @@ def example_data_dir() -> Path:
47
48
def available_examples() -> list[str]:
49
"""List examples available in the examples folder."""
50
- return [d.stem for d in example_data_dir().iterdir() if d.is_dir()]
+ # 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
+ ]
56
57
58
def model(name: str = "default") -> MCA:
0 commit comments