ChatDev/WareHouse/RGB_Color_Picker_DefaultOrganization_20231015003723/main.py
2023-10-15 01:42:58 -07:00

10 lines
340 B
Python

'''
This is the main file of the RGB color picker application.
It imports the ColorPickerGUI class from the gui.py file and initializes the GUI.
'''
from gui import ColorPickerGUI
if __name__ == "__main__":
# Create an instance of the ColorPickerGUI class
color_picker = ColorPickerGUI()
# Start the GUI
color_picker.start()