Unregister the action. After unregistering the class cannot be used.
(self)
| 1357 | |
| 1358 | @classmethod |
| 1359 | def unregister(self): |
| 1360 | """Unregister the action. |
| 1361 | After unregistering the class cannot be used. |
| 1362 | """ |
| 1363 | idaapi.unregister_action(self.get_name()) |
| 1364 | |
| 1365 | @classmethod |
| 1366 | def activate(self, ctx): |