diff options
author | Ron Economos <w6rz@comcast.net> | 2020-11-08 03:33:22 -0800 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2020-12-17 08:33:21 -0500 |
commit | 4f3b31a3700b02baf35e5eb95485e6a64933f6b7 (patch) | |
tree | ef320973bbd25b1139c42ac1ed1e3c9cd80b0d35 /gr-filter/python | |
parent | 08cd88d474a86bd742a321745b225293dcea635c (diff) |
gr-filter: Remove unused parameter in polyphase_filterbank.
Diffstat (limited to 'gr-filter/python')
-rw-r--r-- | gr-filter/python/filter/bindings/polyphase_filterbank_python.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gr-filter/python/filter/bindings/polyphase_filterbank_python.cc b/gr-filter/python/filter/bindings/polyphase_filterbank_python.cc index 60278e9347..383476bbc1 100644 --- a/gr-filter/python/filter/bindings/polyphase_filterbank_python.cc +++ b/gr-filter/python/filter/bindings/polyphase_filterbank_python.cc @@ -14,7 +14,7 @@ /* BINDTOOL_GEN_AUTOMATIC(0) */ /* BINDTOOL_USE_PYGCCXML(0) */ /* BINDTOOL_HEADER_FILE(polyphase_filterbank.h) */ -/* BINDTOOL_HEADER_FILE_HASH(74cd61e5d733f0b33073025d04d5e48e) */ +/* BINDTOOL_HEADER_FILE_HASH(00757cfefaac6f0906e8e0643ae0213c) */ /***********************************************************************************/ #include <pybind11/complex.h> @@ -39,12 +39,9 @@ void bind_polyphase_filterbank(py::module& m) py::class_<polyphase_filterbank, std::shared_ptr<polyphase_filterbank>>( m_kernel, "polyphase_filterbank", D(kernel, polyphase_filterbank)) - .def(py::init<unsigned int, - std::vector<float, std::allocator<float>> const&, - bool>(), + .def(py::init<unsigned int, std::vector<float, std::allocator<float>> const&>(), py::arg("nfilts"), py::arg("taps"), - py::arg("fft_forward") = false, D(kernel, polyphase_filterbank, polyphase_filterbank, 0)) |