26 lines
424 B
Python
26 lines
424 B
Python
"""
|
|
app.py — Entry point for VFX Pull Processor.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
import sys
|
|
|
|
from PySide6.QtWidgets import QApplication
|
|
|
|
from gui import MainWindow
|
|
|
|
|
|
def main() -> None:
|
|
app = QApplication(sys.argv)
|
|
app.setApplicationName("VFX Pull Processor")
|
|
app.setOrganizationName("VFX")
|
|
|
|
window = MainWindow()
|
|
window.show()
|
|
|
|
sys.exit(app.exec())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|