Skip to content

Commit

Permalink
refactor: コーディング規約に合わせたフォーマットに変更
Browse files Browse the repository at this point in the history
  • Loading branch information
bizyutyu committed Nov 6, 2024
1 parent 0ebc2eb commit 14068cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/image_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ def sharpen_image(image_path: str) -> str:
# 出力パスの生成
dir_path = os.path.dirname(image_path)
file_name = os.path.basename(image_path)
sharpened_image_path = os.path.join(dir_path, f"Sharpened_{file_name}")
sharpened_image_path = os.path.join(dir_path,
f"Sharpened_{file_name}")

# 先鋭化画像保存処理
os.makedirs(os.path.dirname(sharpened_image_path), exist_ok=True)
Expand Down

0 comments on commit 14068cc

Please sign in to comment.