Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
classiqdor committed Jun 6, 2024
1 parent f07f686 commit b511557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/utils_for_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def iterate_notebooks() -> Iterable[str]:
return notebooks_to_test


def _get_all_notebooks(directory=ROOT_DIRECTORY) -> Iterable[str]:
def _get_all_notebooks(directory: Path = ROOT_DIRECTORY) -> Iterable[str]:
for root, _, files in os.walk(directory):
for file in files:
if file.endswith(".ipynb"):
Expand Down

0 comments on commit b511557

Please sign in to comment.