Skip to content

Commit 30dc904

Browse files
committed
fix: remove unnecessary blank lines in template copying function
1 parent 2f0943a commit 30dc904

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

adf_core_python/cli/cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def _copy_template(
3232
) -> None:
3333
dest = os.path.join(dest, name)
3434
shutil.copytree(src, dest)
35-
35+
3636
# dest以下のファイル内のNAME_PLACEHOLDERをnameに置換
3737
for root, dirs, files in os.walk(dest):
3838
for file in files:
@@ -49,5 +49,6 @@ def _copy_template(
4949
new_dir_path = dir_path.replace(NAME_PLACEHOLDER, name)
5050
os.rename(dir_path, new_dir_path)
5151

52+
5253
if __name__ == "__main__":
5354
cli()

0 commit comments

Comments
 (0)