-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Description
Here is what I got when running isek example list.
Available examples:I think the problem is that when installing isek using pip3 install isek, the example folder is excluded.
Then when I invoke the example command, isek is trying to find the example folder, but fails.
Lines 156 to 166 in 93a7e0e
| def list(): | |
| """List available example scripts""" | |
| examples_dir = Path(__file__).parent.parent / "examples" | |
| examples = [ | |
| f.stem | |
| for f in examples_dir.glob("*.py") | |
| if f.name != "__init__.py" and not f.name.startswith("_") | |
| ] | |
| click.echo("Available examples:") | |
| for name in sorted(examples): |
Any idea about how to address this issue? I may help if you have some suggestions.
Metadata
Metadata
Assignees
Labels
No labels