Skip to content

Commit d74896e

Browse files
committed
workaround
1 parent 559a423 commit d74896e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/window/standard_window.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,7 @@ void MakeHanning(bool periodic, std::vector<double>* window) {
7878

7979
void MakeNuttall(bool periodic, std::vector<double>* window) {
8080
sptk::CosineWindow maker(static_cast<int>(window->size()),
81-
{0.355768, 0.487396, 0.144232, 0.012604},
82-
periodic);
81+
{0.355768, 0.487396, 0.144232, 0.012604}, periodic);
8382
*window = maker.Get();
8483
}
8584

tools/test_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ docstrfmt
77
flake8
88
isort
99
mdformat
10-
sphinx
10+
sphinx<8.2.0
1111
sphinx-rtd-theme

0 commit comments

Comments
 (0)