Skip to content

Commit 2770711

Browse files
committed
Fix blue linter
1 parent 612393b commit 2770711

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/update_ml_tutorials.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ def create_tutorial_files():
5757
files_and_headers = []
5858
for file in readme_files:
5959
model_name = file.parts[-2]
60-
tutorial_path = Path(__file__).resolve().parent.parent / 'docs' / 'source' / 'guide' / 'ml_tutorials' / f'{model_name}.md'
60+
tutorial_path = (
61+
Path(__file__).resolve().parent.parent / 'docs' / 'source' / 'guide' / 'ml_tutorials' / f'{model_name}.md'
62+
)
6163
tutorial_dir = os.path.dirname(tutorial_path)
6264
os.makedirs(tutorial_dir, exist_ok=True)
6365

0 commit comments

Comments
 (0)