discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Discuss-gnuradio] AttributeError: No constructor defined for tagged_str


From: Sebastian Sahlin
Subject: [Discuss-gnuradio] AttributeError: No constructor defined for tagged_stream_block (Python)
Date: Tue, 28 May 2019 14:41:34 +0200

Hi,

I'm attempting to create a tagged stream block in Python using the following constructor:

class test_tagged_stream(gr.tagged_stream_block):
    def __init__(self, test_param):
gr.tagged_stream_block.__init__(self,
name="test_tagged_stream",
in_sig=[numpy.complex64],
out_sig=[numpy.complex64],
length_tag_key="test_tag")

However Python is throwing "AttributeError: No constructor defined" at me. Is there some glaringly obvious error in the above code? I am using the input argument list as defined at https://www.gnuradio.org/doc/doxygen/classgr_1_1tagged__stream__block.html#a601cd4073e9c3e6317b5ecc5e2e5871b

Regards




reply via email to

[Prev in Thread] Current Thread [Next in Thread]