There's a line in the example that crashes the script: ```python code = decoder.decode_bits(pulses, debug=False) ``` decode_bits() no longer has that keyword. Changing the code to this makes it work: ```python code = decoder.decode_bits(pulses) ```