ChatDev/WareHouse/RGB_Color_Picker_DefaultOrganization_20231015003723/main.py

10 lines
340 B
Python
Raw Normal View History

2023-10-15 11:42:58 +03:00
'''
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()