I'm programming in pyCharm making a wxPython project (Mostly generated from wxGlade). If I have some code which specifies a string e.g.:
value_label = wx.StaticText(self, wx.ID_ANY, _("Value"))
It then complains about Unresolved reference '_'
. Is there any way to ignore only this unresolved reference?