Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aMarcireau committed Aug 1, 2023
1 parent ca8494c commit 35885c0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ It supports Python 3.9, 3.10, and 3.11.

```sh
cd my-wonderful-project
charidotella init 'recordings/*.es'
charidotella init
```

The directory now has the following structure
Expand Down
8 changes: 5 additions & 3 deletions charidotella/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ def main():
subparsers = parser.add_subparsers(dest="command")
init_parser = subparsers.add_parser("init", help="Generate a configuration file")
init_parser.add_argument(
"glob",
"--glob",
"-g",
default="recordings/*.es",
help="Glob pattern used to search for Event Stream files",
)
init_parser.add_argument(
Expand Down Expand Up @@ -395,8 +397,8 @@ def run_generators(configuration: dict[str, typing.Any]):
"colourtime-.+",
"event-rate-.+",
"spectrogram",
"wiggle-.+",
"video-real-time",
"wiggle",
"video-1x",
]
+ (["spatiospectrogram"] if args.spatiospectrograms else []),
}
Expand Down
2 changes: 1 addition & 1 deletion charidotella/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.0"
__version__ = "2.1.0"

0 comments on commit 35885c0

Please sign in to comment.