8 lines
146 B
Python
8 lines
146 B
Python
"""Compatibility launcher for the PyQt GUI."""
|
|
|
|
from laser_control.gui.main import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|