Skip to content

Commit 817ede8

Browse files
committed
rm unused variable
1 parent 823fc23 commit 817ede8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ipython2cwl/repo2cwl.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
def _get_notebook_paths_from_dir(dir_path: str):
2525
notebooks_paths = []
26-
for path, subdirs, files in os.walk(dir_path):
26+
for path, _, files in os.walk(dir_path):
2727
for name in files:
2828
if name.endswith('.ipynb'):
2929
notebooks_paths.append(os.path.join(path, name))

0 commit comments

Comments
 (0)