I'd like to use the __feature__ module in PySide6 to use snake_case. Based on the blog post by Qt, I'm supposed to be able to use it like this:
from __feature__ import snake_case, true_property
table = QTableWidget()
table.column_count = 2
button = QPushButton("Add")
button.enabled = False
layout = QVBoxLayout()
layout.add_widget(table)
layout.add_widget(button)
However, I can't use __feature__ since my program doesn't know from which package it came from. I tried doing the code above without the import line, but that still doesn't work. What do I do?