Skip to content
This repository has been archived by the owner on Dec 8, 2023. It is now read-only.

Commit

Permalink
调整注释
Browse files Browse the repository at this point in the history
  • Loading branch information
TakWolf committed Jun 4, 2023
1 parent 770819e commit f02f786
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/nico_font_tool/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def save_palette_png(
png_file_path = os.path.join(outputs_dir, f'{outputs_name}.png')
with open(png_file_path, 'wb') as file:
writer.write(file, sheet_data)
logger.info(f"Make: '{png_file_path}'")
logger.info(f"Made: '{png_file_path}'")


def save_rgba_png(
Expand Down Expand Up @@ -114,7 +114,7 @@ def save_rgba_png(
image = png.from_array(rgba_bitmap, 'RGBA')
png_file_path = os.path.join(outputs_dir, f'{outputs_name}.png')
image.save(png_file_path)
logger.info(f"Make: '{png_file_path}'")
logger.info(f"Made: '{png_file_path}'")


def save_dat_file(
Expand All @@ -125,4 +125,4 @@ def save_dat_file(
dat_file_path = os.path.join(outputs_dir, f'{outputs_name}.png.dat')
with open(dat_file_path, 'w', encoding='utf-8') as file:
file.write(''.join(alphabet))
logger.info(f"Make: '{dat_file_path}'")
logger.info(f"Made: '{dat_file_path}'")

0 comments on commit f02f786

Please sign in to comment.