def nuevaImpresora(self, insertar):
        from Insertar import Window

        nueva = Window()
        nueva.show_all()
                + str(resultado[3])
                + "\n"
            )
        bd.close()

        from ListaTintas import Resultados

        jeje = Resultados(impresoras)
        jeje.show_all()

    def nuevaImpresora(self, insertar):
        from Insertar import Window

        nueva = Window()
        nueva.show_all()


# Instanciar
fiestra = Window()
# Posicion Ventana
fiestra.set_position(Gtk.WindowPosition.CENTER)
# Resizable
fiestra.set_resizable(False)
# Cierre on Click
fiestra.connect("delete-event", Gtk.main_quit)
# Mostrar ventana
fiestra.show_all()
# fiestra.set_decorated(True)
# Activar atencion de eventos
Gtk.main()