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

Commit

Permalink
fix(anime.py): update dirs path
Browse files Browse the repository at this point in the history
  • Loading branch information
0x61nas authored Aug 13, 2023
1 parent 402da89 commit 205b7a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions photo/anime.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
pins = pinterest.board_feed(board_id=animeBoardId)

# The directory where the image will be saved.
saveDir = "../img/"
saveDir = "./img/"

# The cache directory.
cacheDir = "cache/"
cacheDir = "./cache/"

while len(pins) > 2:
# Get random pin
Expand Down Expand Up @@ -92,4 +92,4 @@
# Break the loop
break

print("Done")
print("Done.")

0 comments on commit 205b7a6

Please sign in to comment.