Skip to content

Commit

Permalink
Minor edits in readability
Browse files Browse the repository at this point in the history
  • Loading branch information
Solarrixs committed Jul 15, 2024
1 parent 8736d0e commit ec0454a
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
import pywinauto
import pyautogui
import time
import os
import sys
import csv
try:
import pywinauto
import pyautogui
import time
import os
import sys
import csv
except ImportError as e:
print(f"Error importing required library: {e}")
print("Please ensure all required libraries are installed.")
sys.exit(1)

# Constants
IMAGE_PATH = os.path.join(os.path.dirname(__file__), 'image.png')
Expand Down Expand Up @@ -255,4 +260,5 @@ def display_splash_art():
print("Channel Orders:", channel_orders_list)

# Run Program
main()
if __name__ == "__main__":
main()

0 comments on commit ec0454a

Please sign in to comment.