mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
really remove all six imports
apparently, pyupgrade didn't know how to handle these...
This commit is contained in:
parent
ee77b6fbe2
commit
807f124ef8
5 changed files with 5 additions and 5 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in a new issue