Run isort on project

Signed-off-by: Alfred Wingate <parona@protonmail.com>
This commit is contained in:
Alfred Wingate
2023-11-14 23:04:18 +02:00
parent d860708ec9
commit 70f88ed37d
21 changed files with 99 additions and 83 deletions

View File

@ -1,8 +1,10 @@
from urllib.parse import urljoin, urlparse
import urllib.request, urllib.error, urllib.parse
import re
import io
import difflib
import io
import re
import urllib.error
import urllib.parse
import urllib.request
from urllib.parse import urljoin, urlparse
try:
from BeautifulSoup import BeautifulSoup
@ -12,13 +14,13 @@ except ImportError:
import portage
from euscan import (
output,
helpers,
mangling,
CONFIG,
SCANDIR_BLACKLIST_URLS,
BRUTEFORCE_BLACKLIST_PACKAGES,
BRUTEFORCE_BLACKLIST_URLS,
CONFIG,
SCANDIR_BLACKLIST_URLS,
helpers,
mangling,
output,
)
HANDLER_NAME = "generic"