Skip to content

Commit 79b8faf

Browse files
committed
fix: codacy raised issue
1 parent a618e53 commit 79b8faf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_code_docstrings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def test_doctest_allexamples():
5252
directory = r"../examples"
5353
actual_path = Path(__file__).parent.absolute()
5454
handled_files = []
55-
for root, subdirectories, files in os.walk(actual_path / directory):
55+
for root, subdirectories, _ in os.walk(actual_path / directory):
5656
for subdirectory in subdirectories:
5757
subdir = Path(root) / subdirectory
5858
print(subdir)

0 commit comments

Comments
 (0)