Source code for spacr.app_mask
from .gui import MainApp
[docs]
def start_mask_app():
"""Launch the main spacr GUI with the Mask tab preselected."""
app = MainApp(default_app="Mask")
app.mainloop()
if __name__ == "__main__":
start_mask_app()