mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
Removed re and added brackets
This commit is contained in:
parent
a2136e1100
commit
1696789cbe
1 changed files with 1 additions and 2 deletions
|
|
@ -19,7 +19,6 @@ import itertools
|
|||
import logging
|
||||
import os
|
||||
import pkgutil
|
||||
import re
|
||||
import sys
|
||||
from unittest.mock import ANY, Mock, patch
|
||||
|
||||
|
|
@ -582,7 +581,7 @@ class TestImportAllPlugins(PluginMixin):
|
|||
|
||||
caplog.set_level(logging.WARNING)
|
||||
caplog.clear()
|
||||
plugins.load_plugins(plugin_name)
|
||||
plugins.load_plugins([plugin_name])
|
||||
|
||||
# Check for warnings, is a bit hacky but we can make full use of the beets
|
||||
# load_plugins code that way
|
||||
|
|
|
|||
Loading…
Reference in a new issue