From 0e5bc99779e438362e04d23813c1e5cc7440ca4b Mon Sep 17 00:00:00 2001 From: augustin64 Date: Thu, 17 Feb 2022 12:19:47 +0100 Subject: [PATCH] Sort imports --- V4.py | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/V4.py b/V4.py index 87a6105..1e67ca1 100644 --- a/V4.py +++ b/V4.py @@ -1,22 +1,23 @@ #!/usr/bin/python3 -import os -from time import sleep -from random import uniform, choice, randint,shuffle -from re import search,findall -from os import path, sys, system -import discord import asyncio +import os +from csv import reader +from os import path, sys, system +from random import choice, randint, shuffle, uniform +from re import findall, search from sys import platform -from csv import reader -from discord import Webhook, RequestsWebhookAdapter, Embed, Colour # Importing discord.Webhook and discord.RequestsWebhookAdapter +from time import sleep +import discord +from discord import ( # Importing discord.Webhook and discord.RequestsWebhookAdapter + Colour, Embed, RequestsWebhookAdapter, Webhook) from selenium import webdriver -from selenium.webdriver.firefox.options import Options -from selenium.webdriver.common.keys import Keys -from selenium.webdriver.common.by import By -from selenium.webdriver.support.ui import WebDriverWait -from selenium.webdriver.support import expected_conditions as EC from selenium.common import exceptions +from selenium.webdriver.common.by import By +from selenium.webdriver.common.keys import Keys +from selenium.webdriver.firefox.options import Options +from selenium.webdriver.support import expected_conditions as EC +from selenium.webdriver.support.ui import WebDriverWait main = True Headless = True