Skip to content

Commit

Permalink
Merge pull request #4241 from wisp3rwind/pr_really_remove_six
Browse files Browse the repository at this point in the history
Really remove six
  • Loading branch information
wisp3rwind committed Jan 20, 2022
2 parents ee77b6f + 807f124 commit c3a0bb1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion beetsplug/replaygain.py
Expand Up @@ -22,7 +22,7 @@
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
Expand Down
2 changes: 1 addition & 1 deletion test/helper.py
Expand Up @@ -37,7 +37,7 @@
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
Expand Down
2 changes: 1 addition & 1 deletion test/test_importer.py
Expand Up @@ -21,7 +21,7 @@
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
Expand Down
2 changes: 1 addition & 1 deletion test/test_logging.py
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/test_spotify.py
Expand Up @@ -10,7 +10,7 @@
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:
Expand Down

0 comments on commit c3a0bb1

Please sign in to comment.