I’m working with Python and multiple of my GUI Classes require some images.
Is it okay to simply add the ressource path via a constant and import it everywhere?
The other approach I was considering was to make setters for each of them and use them while initializing the App. But I feel like this creates unnecessary complexity.
Are these valid, are there other approaches?