Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

args tuple assignment issue #15

Merged
merged 11 commits into from
Jun 18, 2023
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
### Added
- Logo
### Changed
- `quote` decorator bug fixed
## [0.1] - 2023-06-10
### Added
- `README.md`
Expand Down
2 changes: 1 addition & 1 deletion nava/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def inner_function(*args, **kwargs):
"""
sound_path = args[0]
sound_path = shlex.quote(sound_path)
args[0] = sound_path
args = (sound_path, *args[1:])
return func(*args, **kwargs)
return inner_function

Expand Down