Suppress "DeprecationWarning: Gtk.some.widget is deprecated"

There no longer seems to be an option in GTK4, so I’ll do it in Python:

warnings.filterwarnings(“ignore”, category=DeprecationWarning)

1 Like