From 05a02ca71d10fdc4b68a5e7034664aaf9f13a8aa Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Thu, 13 Aug 2020 10:29:54 +0000 Subject: [PATCH] Restyled by isort --- Defs/ActionManager/Server/server_runner.py | 19 ++++-------------- Defs/ActionManager/main_runner.py | 14 +++++-------- Defs/ActionManager/simple_informant.py | 14 +++++-------- .../EmailManager/email_prompt.py | 13 ++++-------- Defs/FeatureManager/cloudflare.py | 12 ++++------- Defs/FeatureManager/feature_prompt.py | 11 +++++----- Defs/FeatureManager/keylogger.py | 3 ++- .../unsorted_will_be_replaced.py | 20 +++++-------------- HiddenEye.py | 1 + controllers/EULA_controller.py | 3 ++- 10 files changed, 38 insertions(+), 72 deletions(-) diff --git a/Defs/ActionManager/Server/server_runner.py b/Defs/ActionManager/Server/server_runner.py index 9eafb09..6d36550 100644 --- a/Defs/ActionManager/Server/server_runner.py +++ b/Defs/ActionManager/Server/server_runner.py @@ -10,21 +10,10 @@ import Defs.LocalizationManager.lang_action_manager.lang_server.lang_server_runn import Defs.LocalizationManager.lang_global_usage as global_localization import Defs.ThemeManager.theme as theme from Defs.ActionManager import simple_informant -from Defs.ImportManager.unsorted_will_be_replaced import BytesIO -from Defs.ImportManager.unsorted_will_be_replaced import CalledProcessError -from Defs.ImportManager.unsorted_will_be_replaced import check_output -from Defs.ImportManager.unsorted_will_be_replaced import chmod -from Defs.ImportManager.unsorted_will_be_replaced import DEVNULL -from Defs.ImportManager.unsorted_will_be_replaced import ngrok -from Defs.ImportManager.unsorted_will_be_replaced import ngrok_conf -from Defs.ImportManager.unsorted_will_be_replaced import path -from Defs.ImportManager.unsorted_will_be_replaced import regular_expression -from Defs.ImportManager.unsorted_will_be_replaced import requests -from Defs.ImportManager.unsorted_will_be_replaced import run_background_command -from Defs.ImportManager.unsorted_will_be_replaced import run_command -from Defs.ImportManager.unsorted_will_be_replaced import url_request -from Defs.ImportManager.unsorted_will_be_replaced import wait -from Defs.ImportManager.unsorted_will_be_replaced import ZipFile +from Defs.ImportManager.unsorted_will_be_replaced import ( + DEVNULL, BytesIO, CalledProcessError, ZipFile, check_output, chmod, ngrok, + ngrok_conf, path, regular_expression, requests, run_background_command, + run_command, url_request, wait) from Defs.LocalizationManager.helper import print_sorted_as_menu try: diff --git a/Defs/ActionManager/main_runner.py b/Defs/ActionManager/main_runner.py index 12f1e5a..15ace4a 100644 --- a/Defs/ActionManager/main_runner.py +++ b/Defs/ActionManager/main_runner.py @@ -9,15 +9,11 @@ import time import Defs.ActionManager.simple_informant as simple_informant import Defs.LocalizationManager.lang_action_manager.lang_main_runner as localization import Defs.LocalizationManager.lang_global_usage as global_localization -from Defs.ImportManager.unsorted_will_be_replaced import copyfile -from Defs.ImportManager.unsorted_will_be_replaced import mkdir -from Defs.ImportManager.unsorted_will_be_replaced import path -from Defs.ImportManager.unsorted_will_be_replaced import pathlib_Path -from Defs.ImportManager.unsorted_will_be_replaced import remove -from Defs.ImportManager.unsorted_will_be_replaced import rmtree -from Defs.ImportManager.unsorted_will_be_replaced import run_command -from Defs.ImportManager.unsorted_will_be_replaced import wait -from Defs.ImportManager.unsorted_will_be_replaced import webpage_set +from Defs.ImportManager.unsorted_will_be_replaced import (copyfile, mkdir, + path, pathlib_Path, + remove, rmtree, + run_command, wait, + webpage_set) from Defs.LocalizationManager.helper import print_sorted_as_menu module_loading_message = simple_informant.module_loading_message diff --git a/Defs/ActionManager/simple_informant.py b/Defs/ActionManager/simple_informant.py index 46d81dd..cef61f7 100644 --- a/Defs/ActionManager/simple_informant.py +++ b/Defs/ActionManager/simple_informant.py @@ -9,15 +9,11 @@ import Defs.FeatureManager.EmailManager.email_prompt as email_prompt import Defs.LocalizationManager.lang_action_manager.lang_simple_informant as localization import Defs.LocalizationManager.lang_global_usage as global_localization import Defs.ThemeManager.theme as theme -from Defs.ImportManager.unsorted_will_be_replaced import chmod -from Defs.ImportManager.unsorted_will_be_replaced import copyfile -from Defs.ImportManager.unsorted_will_be_replaced import getuid -from Defs.ImportManager.unsorted_will_be_replaced import pathlib_Path -from Defs.ImportManager.unsorted_will_be_replaced import platform -from Defs.ImportManager.unsorted_will_be_replaced import requests -from Defs.ImportManager.unsorted_will_be_replaced import run_command -from Defs.ImportManager.unsorted_will_be_replaced import stat -from Defs.ImportManager.unsorted_will_be_replaced import try_to_run_command +from Defs.ImportManager.unsorted_will_be_replaced import (chmod, copyfile, + getuid, pathlib_Path, + platform, requests, + run_command, stat, + try_to_run_command) default_palette = theme.default_palette diff --git a/Defs/FeatureManager/EmailManager/email_prompt.py b/Defs/FeatureManager/EmailManager/email_prompt.py index 8472f61..7bf95db 100644 --- a/Defs/FeatureManager/EmailManager/email_prompt.py +++ b/Defs/FeatureManager/EmailManager/email_prompt.py @@ -6,16 +6,11 @@ # -from Defs.ImportManager.unsorted_will_be_replaced import ( - run_command, - wait, - path, - system, - getpass, - base64, - copyfile, -) import Defs.ThemeManager.theme as theme +from Defs.ImportManager.unsorted_will_be_replaced import (base64, copyfile, + getpass, path, + run_command, system, + wait) default_palette = theme.default_palette diff --git a/Defs/FeatureManager/cloudflare.py b/Defs/FeatureManager/cloudflare.py index 9c5cb01..23293d1 100644 --- a/Defs/FeatureManager/cloudflare.py +++ b/Defs/FeatureManager/cloudflare.py @@ -6,15 +6,11 @@ # -from Defs.ImportManager.unsorted_will_be_replaced import ( - wait, - run_command, - pathlib_Path, - replace, - copyfile, - chmod, -) import Defs.ThemeManager.theme as theme +from Defs.ImportManager.unsorted_will_be_replaced import (chmod, copyfile, + pathlib_Path, + replace, run_command, + wait) default_palette = theme.default_palette diff --git a/Defs/FeatureManager/feature_prompt.py b/Defs/FeatureManager/feature_prompt.py index 46f50f2..35e43eb 100644 --- a/Defs/FeatureManager/feature_prompt.py +++ b/Defs/FeatureManager/feature_prompt.py @@ -6,14 +6,15 @@ # -import Defs.LocalizationManager.lang_feature_manager.lang_feature_prompt as feature_localization -import Defs.LocalizationManager.lang_global_usage as global_localization -from Defs.ImportManager.unsorted_will_be_replaced import run_command -import Defs.ThemeManager.theme as theme +from time import sleep + import Defs.FeatureManager.cloudflare as cloudflare import Defs.FeatureManager.EmailManager.email_prompt as email_prompt import Defs.FeatureManager.keylogger as keylogger -from time import sleep +import Defs.LocalizationManager.lang_feature_manager.lang_feature_prompt as feature_localization +import Defs.LocalizationManager.lang_global_usage as global_localization +import Defs.ThemeManager.theme as theme +from Defs.ImportManager.unsorted_will_be_replaced import run_command default_palette = theme.default_palette diff --git a/Defs/FeatureManager/keylogger.py b/Defs/FeatureManager/keylogger.py index 9b17d2f..c931079 100644 --- a/Defs/FeatureManager/keylogger.py +++ b/Defs/FeatureManager/keylogger.py @@ -6,8 +6,9 @@ # -from Defs.ImportManager.unsorted_will_be_replaced import wait, run_command, path import Defs.ThemeManager.theme as theme +from Defs.ImportManager.unsorted_will_be_replaced import (path, run_command, + wait) default_palette = theme.default_palette diff --git a/Defs/ImportManager/unsorted_will_be_replaced.py b/Defs/ImportManager/unsorted_will_be_replaced.py index ca29f24..8870cc1 100644 --- a/Defs/ImportManager/unsorted_will_be_replaced.py +++ b/Defs/ImportManager/unsorted_will_be_replaced.py @@ -5,31 +5,21 @@ # under certain conditions; you can read LICENSE for details. # import base64 -import stat import getpass import platform import re as regular_expression import socket +import stat from distutils.dir_util import copy_tree as webpage_set from io import BytesIO -from os import chdir -from os import chmod -from os import getuid -from os import mkdir -from os import path -from os import remove -from os import replace -from os import system +from os import chdir, chmod, getuid, mkdir, path, remove, replace, system from pathlib import Path as pathlib_Path -from shutil import copyfile -from shutil import rmtree +from shutil import copyfile, rmtree +from subprocess import DEVNULL, PIPE, CalledProcessError +from subprocess import Popen as run_background_command from subprocess import call as run_command -from subprocess import CalledProcessError from subprocess import check_call as try_to_run_command from subprocess import check_output -from subprocess import DEVNULL -from subprocess import PIPE -from subprocess import Popen as run_background_command from time import sleep as wait from urllib import request as url_request from zipfile import ZipFile diff --git a/HiddenEye.py b/HiddenEye.py index c46872c..7927f22 100755 --- a/HiddenEye.py +++ b/HiddenEye.py @@ -8,6 +8,7 @@ import multiprocessing import ssl from os import environ + import Defs.ActionManager.main_runner as main_runner import Defs.ActionManager.Server.server_runner as server_runner import Defs.ActionManager.simple_informant as simple_informant diff --git a/controllers/EULA_controller.py b/controllers/EULA_controller.py index e67f2e7..a91a5ad 100644 --- a/controllers/EULA_controller.py +++ b/controllers/EULA_controller.py @@ -1,6 +1,7 @@ import pathlib -from os import chmod import stat +from os import chmod + from views.EULA_view import EULAView