Skip to content

Commit

Permalink
Fix: pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
eight04 committed Nov 15, 2024
1 parent 9a2a764 commit 0b58b11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vpip/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 0b58b11

Please sign in to comment.