Skip to content

Commit

Permalink
remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
iLLiCiTiT committed Aug 12, 2024
1 parent d6eab06 commit 82805e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/build_post_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def get_ayon_version(ayon_root):


def _build_shim_windows(
dst_shim_root: Path, dist_root: Path, ayon_root: Path, version: str
dst_shim_root: Path, dist_root: Path, version: str
):
iscc_executable = _find_iscc()

Expand Down Expand Up @@ -235,7 +235,7 @@ def copy_shim_to_build(ayon_root, build_content_root):
platform_name = platform.system().lower()
if platform_name == "windows":
shim_installer_path = _build_shim_windows(
dst_shim_root, dist_root, ayon_root, version
dst_shim_root, dist_root, version
)
elif platform_name == "linux":
shim_installer_path = _build_shim_linux(
Expand Down

0 comments on commit 82805e7

Please sign in to comment.