8 lines
199 B
Python
8 lines
199 B
Python
"""Entry point. Run this to start the editor:
|
|
|
|
cd sedona_editor
|
|
/opt/homebrew/bin/python3.13 run.py
|
|
"""
|
|
|
|
import main # noqa: F401 (importing main builds the UI and enters the Tk main loop)
|