Skip to content

Commit

Permalink
fix ruff errors 1
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed Jul 16, 2024
1 parent 5b421fa commit 6326dfc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/ayon_wrap/api/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def _get_version(project_name, product_name, product_id,
else:
try:
version_int = int(version_val)
except:
except BaseException:
raise ApplicationLaunchFailed(
f"Couldn't convert value '{version_val}' to "
f"integer. Please fix it in '{workfile_path}'")
Expand Down
2 changes: 1 addition & 1 deletion client/ayon_wrap/hooks/pre_replace_placeholders.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import json

from ayon_applications import PreLaunchHook, LaunchTypes
from ayon_core.pipeline import Anatomy, AVALON_CONTAINER_ID
from ayon_core.pipeline import AVALON_CONTAINER_ID
from ayon_core.lib import get_version_from_path

from ayon_wrap import api
Expand Down

0 comments on commit 6326dfc

Please sign in to comment.