I have a clickable qt button:
window.my_button.clicked.connect(functools.partial(print, "Clicked!"))
I'd expect this to print Clicked!\n to console when I press the button.
Instead it prints Clicked! False\n.
Why does it do this and how do I change it to the expected behavior?