really remove all six imports

apparently, pyupgrade didn't know how to handle these...
This commit is contained in:
wisp3rwind 2022-01-20 00:23:39 +01:00
parent ee77b6fbe2
commit 807f124ef8
5 changed files with 5 additions and 5 deletions

View file

@ -22,7 +22,7 @@ import subprocess
import sys
import warnings
from multiprocessing.pool import ThreadPool, RUN
from six.moves import queue
import queue
from threading import Thread, Event
from beets import ui

View file

@ -37,7 +37,7 @@ import shutil
import subprocess
from tempfile import mkdtemp, mkstemp
from contextlib import contextmanager
from six import StringIO
from io import StringIO
from enum import Enum
import beets

View file

@ -21,7 +21,7 @@ import shutil
import unicodedata
import sys
import stat
from six import StringIO
from io import StringIO
from tempfile import mkstemp
from zipfile import ZipFile
from tarfile import TarFile

View file

@ -3,7 +3,7 @@
import sys
import threading
import logging as log
from six import StringIO
from io import StringIO
import unittest
import beets.logging as blog

View file

@ -10,7 +10,7 @@ from beets import config
from beets.library import Item
from beetsplug import spotify
from test.helper import TestHelper
from six.moves.urllib.parse import parse_qs, urlparse
from urllib.parse import parse_qs, urlparse
class ArgumentsMock: