Removed re and added brackets

This commit is contained in:
Sebastian Mohr 2025-07-30 13:37:31 +02:00
parent a2136e1100
commit 1696789cbe

View file

@ -19,7 +19,6 @@ import itertools
import logging import logging
import os import os
import pkgutil import pkgutil
import re
import sys import sys
from unittest.mock import ANY, Mock, patch from unittest.mock import ANY, Mock, patch
@ -582,7 +581,7 @@ class TestImportAllPlugins(PluginMixin):
caplog.set_level(logging.WARNING) caplog.set_level(logging.WARNING)
caplog.clear() 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 # Check for warnings, is a bit hacky but we can make full use of the beets
# load_plugins code that way # load_plugins code that way