We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 823fc23 commit 817ede8Copy full SHA for 817ede8
ipython2cwl/repo2cwl.py
@@ -23,7 +23,7 @@
23
24
def _get_notebook_paths_from_dir(dir_path: str):
25
notebooks_paths = []
26
- for path, subdirs, files in os.walk(dir_path):
+ for path, _, files in os.walk(dir_path):
27
for name in files:
28
if name.endswith('.ipynb'):
29
notebooks_paths.append(os.path.join(path, name))
0 commit comments