Skip to content

Commit

Permalink
Simplify, it's already str
Browse files Browse the repository at this point in the history
  • Loading branch information
BigRoy committed Aug 31, 2024
1 parent 337d9ac commit 3a2eb18
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions client/ayon_usd/addon.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ def tray_start(self):
Download USD if needed.
"""

download_dir = str(DOWNLOAD_DIR)
os.makedirs(download_dir, exist_ok=True)
os.makedirs(DOWNLOAD_DIR, exist_ok=True)

if not os.path.exists(ADDON_DATA_JSON_PATH):
now = datetime.now().astimezone(timezone.utc)
Expand Down

0 comments on commit 3a2eb18

Please sign in to comment.