You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add early transforms before handling delayed assattr nodes
When importing Gtk, it looks like this:
import gi
gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
It is vital that gi.require_version() is made before related 'from
gi.repository import ...'. The brain_gi tries to do that using
transforms. And it works unless Gtk is imported as part of delayed
assattr handling.
Fix this by adding early transforms that are called before delayed
assattr.
Fixes#2190Fixespylint-dev/pylint#6352
0 commit comments