diff --git a/vpip/commands/__init__.py b/vpip/commands/__init__.py index 5e54802..d5a8699 100644 --- a/vpip/commands/__init__.py +++ b/vpip/commands/__init__.py @@ -5,7 +5,7 @@ from typing import Iterator def old_iter_files() -> Iterator[str]: - for name in importlib.resources.contents(__name__): + for name in importlib.resources.contents(__name__): # pylint: disable=deprecated-method if re.match(r"[a-z]\w+\.py", name): yield name