I would like to use the snake_case feature from pyside6. I have the code working but I'd like to have my IDE autocomplete the methods as snake_case as well.
I found this post discussing the issue, and the answer linking to this QT page explaining the feature and how to use it. Following that I executed pyside6-genpyi all --feature snake_case true_property
which resolved a lot of the methods, but not all. For example, set_window_title
or button.set_text
are not recognised by the IDE, while set_central_widget
and set_fixed_size
do get resolved.
How can I get my IDE to recognise all the Qt methods as snake_case?