Code Cleaning

I just fixed simple things such as spacing, redundant parenthesis, and simplified expressions
This commit is contained in:
DarkMidus 2020-05-14 15:44:13 -05:00 committed by GitHub
parent 81a966eeb8
commit 018d3be4d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,6 +14,7 @@ import Defs.LocalizationManager.lang_global_usage as global_localization
default_palette = theme.default_palette default_palette = theme.default_palette
def license_handler(): def license_handler():
eula = pathlib_Path("eula.txt") eula = pathlib_Path("eula.txt")
@ -40,10 +41,10 @@ def exit_message(port = 80): # Message when HiddenEye exit
choice.lower() choice.lower()
if choice == 'r': if choice == 'r':
run_command(['sudo', 'python3', 'HiddenEye.py']) run_command(['sudo', 'python3', 'HiddenEye.py'])
elif choice == 'm': elif choice == 'm':
email_prompt.captured_data_email_confirmation(port) email_prompt.captured_data_email_confirmation(port)
elif choice == 's': elif choice == 's':
server_menu.server_selection(port) server_menu.server_selection(port)
elif choice == 'x': elif choice == 'x':
run_command('clear') run_command('clear')
print(global_localization.hidden_eye_logo) print(global_localization.hidden_eye_logo)
@ -69,7 +70,7 @@ def terms_of_service_message(): # menu where user select what they wanna use
# print("\n\n[ {0}YOU ARE NOT AUTHORIZED TO USE THIS TOOL.YOU CAN ONLY USE IT FOR EDUCATIONAL PURPOSE.!{1} ]\n\n".format(default_palette[0], default_palette[4])) # print("\n\n[ {0}YOU ARE NOT AUTHORIZED TO USE THIS TOOL.YOU CAN ONLY USE IT FOR EDUCATIONAL PURPOSE.!{1} ]\n\n".format(default_palette[0], default_palette[4]))
# exit() # exit()
agreement = license_handler() agreement = license_handler()
if agreement == False: if not agreement:
print(localization.lang_terms_of_service_message["GPL_3.0"]) print(localization.lang_terms_of_service_message["GPL_3.0"])
print(localization.lang_terms_of_service_message["great_power_great_responsibility"]) print(localization.lang_terms_of_service_message["great_power_great_responsibility"])
print(localization.lang_terms_of_service_message["do_you_accept_license"]) print(localization.lang_terms_of_service_message["do_you_accept_license"])
@ -186,7 +187,7 @@ def port_selector(): # Question where user must select port
print(localization.lang_port_selector["port_suggestion"]) print(localization.lang_port_selector["port_suggestion"])
choice = input(global_localization.input_line) choice = input(global_localization.input_line)
try: try:
if (int(choice) > 65535 or int(choice) < 1): if int(choice) > 65535 or int(choice) < 1:
return selectPort() return selectPort()
else: else:
return choice return choice