[Answer]-Python shared global module variable issue

1👍

It could be possible that your module base.py gets imported twice?

Add a print at the beginning of base.py with a “print ‘base.py executed'” or something.

edit: or even better, print id(REGISTERED_WIDGETS)

Leave a comment