MCPcopy Create free account
hub / github.com/NyarchLinux/DesktopPuppet / DesktopPuppetApp

Class DesktopPuppetApp

src/gui_controller.py:704–716  ·  view source on GitHub ↗

Main application class.

Source from the content-addressed store, hash-verified

702
703
704class DesktopPuppetApp(Adw.Application):
705 """Main application class."""
706
707 def __init__(self):
708 super().__init__(
709 application_id="moe.nyarchlinux.desktop-puppet-gui",
710 flags=Gio.ApplicationFlags.FLAGS_NONE
711 )
712
713 def do_activate(self):
714 """Activate the application."""
715 win = DesktopPuppetWindow(self)
716 win.present()
717
718
719def main():

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected