I need to import a resource_rc.py file in my module. It is immediately marked by PyCharm as "unused". Is there a way to mark "unused" imports and also variables, etc. as used in Python?
I came up with the idea to just:
import resource_rc
del resource_rc# do something with the imported stuff
It works, but is that correct? Can that cause a problem?