Skip to content

Commit

Permalink
Merge pull request #63 from wisp3rwind/pr_deprecated_imports
Browse files Browse the repository at this point in the history
Replace deprecated imports of beets submodules by the new standalone packages
  • Loading branch information
wisp3rwind committed May 23, 2023
2 parents 34d40fe + 89ddfef commit 659e304
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions pyproject.toml
Expand Up @@ -32,6 +32,8 @@ mock = "^5.0.2"
flake8 = "^6.0.0"
isort = "^5.12.0"
black = "^23.3.0"
confuse = "^2.0.1"
mediafile = "^0.11.0"

[tool.pytest.ini_options]
addopts = "--cov --cov-report=term --cov-report=html"
Expand Down
4 changes: 2 additions & 2 deletions test/cli_test.py
Expand Up @@ -3,10 +3,10 @@
import shutil

from beets import util
from beets.mediafile import MediaFile
from beets.util import bytestring_path, syspath
from beets.util.confit import ConfigValueError
from confuse import ConfigValueError
from helper import TestHelper, control_stdin
from mediafile import MediaFile


class DocTest(TestHelper):
Expand Down
2 changes: 1 addition & 1 deletion test/helper.py
Expand Up @@ -11,8 +11,8 @@
import six
from beets import logging, plugins, ui, util
from beets.library import Item
from beets.mediafile import MediaFile
from beets.util import MoveOperation, bytestring_path, displayable_path, syspath
from mediafile import MediaFile
from mock import patch
from six import StringIO

Expand Down

0 comments on commit 659e304

Please sign in to comment.