Skip to content

Commit

Permalink
🎨 refactor(cli): enhance pack directory initialization logic
Browse files Browse the repository at this point in the history
πŸ”– chore(pyproject): update project version to 0.1.8 and description
  • Loading branch information
sudoskys committed Sep 20, 2024
1 parent 3c55de0 commit 6190a9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tsticker/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def get_credentials() -> Credentials | None:
def delete_same_name_files(sticker_table_dir: pathlib.Path):
# Check if the directory exists
if not sticker_table_dir.exists():
print(f"Directory {sticker_table_dir} does not exist.")
console.print(f"Directory {sticker_table_dir} does not exist.")
return
# Group files by their base name
files_by_name = defaultdict(list)
Expand Down Expand Up @@ -492,7 +492,7 @@ async def push_to_cloud(
console.print(f"[bold red]Failed to create sticker set: {e}[/]")
return False
return True
# θŽ·ε–δΊ‘η«―ζ–‡δ»Ά
# θŽ·ε–δΊ‘η«―ζ–‡δ»Ά
cloud_files = {
sticker.file_unique_id: sticker
for sticker in sticker_set.stickers
Expand Down

0 comments on commit 6190a9a

Please sign in to comment.