Skip to content

Commit

Permalink
Several minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
aMarcireau committed May 5, 2023
1 parent ba9b6fa commit f004036
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charidotella/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def run_generators(configuration: dict[str, typing.Any]):
)
paths = [
path.resolve()
for path in pathlib.Path(".").rglob(args.glob)
for path in pathlib.Path(".").glob(args.glob)
if path.is_file() and path.suffix == ".es"
]
paths.sort(key=lambda path: (path.stem, path.parent))
Expand Down
2 changes: 1 addition & 1 deletion charidotella/tasks/spectrogram.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run(
str(importlib.resources.files("charidotella").joinpath("assets/spectrogram")),
str(input),
str(output),
str(output.with_suffix(".json")),
str((output.parent / output.stem).with_suffix(".json")),
f"--begin={begin}",
f"--end={end}",
f"--tau={parameters['tau']}",
Expand Down
2 changes: 1 addition & 1 deletion charidotella/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0"
__version__ = "1.1.0"
2 changes: 1 addition & 1 deletion command_line_tools

0 comments on commit f004036

Please sign in to comment.