Skip to content

Commit

Permalink
v9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ShamHyper authored Apr 26, 2023
1 parent 8c0874c commit d58fd20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def Intel_AMD_Finder(w):

internet_need = False
input_check = input("Type [Yes/yes/Y/y] or press Enter to skip: ")
if input_check == ("Yes" or "yes" or "y" or "Y"):
if input_check == ("Yes" or "yes") or ("y" or "Y"):
internet_need = True
else:
internet_need = False
Expand Down Expand Up @@ -205,7 +205,7 @@ def Intel_AMD_Finder(w):
temp_need = False
temp_check = input("Type [Yes/yes/Y/y] or press Enter to skip: ")

if temp_check == ("Yes" or "yes" or "y" or "Y"):
if temp_check == ("Yes" or "yes") or ("y" or "Y"):
temp_need = True
else:
temp_need = False
Expand Down Expand Up @@ -239,7 +239,7 @@ def clean_temp_directory():
sfc_need = False
sfc_check = input("Type [Yes/yes/Y/y] or press Enter to skip: ")

if sfc_check == ("Yes" or "yes" or "y" or "Y"):
if sfc_check == ("Yes" or "yes") or ("y" or "Y"):
sfc_need = True
else:
sfc_need = False
Expand Down

0 comments on commit d58fd20

Please sign in to comment.