How to use the pyno.element.Element.delete function in pyno

To help you get started, we’ve selected a few pyno examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github honix / Pyno / pyno / field.py View on Github external
def delete(self, fully=False):
        Element.delete(self, fully)
        self.layout.delete()
github honix / Pyno / pyno / sub.py View on Github external
def delete(self, fully=False):
        if self.pwindow:
            self.pwindow.close()
            del self.pwindow
        Element.delete(self, fully)
        self.label.delete()
github honix / Pyno / pyno / node.py View on Github external
def delete(self, fully=False):
        self.cleanup()
        Element.delete(self, fully)
        self.label.delete()