Skip to content

Commit d853411

Browse files
committed
Make Houdini CICD compatible with older python versions
1 parent 79b95ef commit d853411

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/scripts/houdini.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import shutil
88
import stat
99
import subprocess
10-
from typing import Literal
10+
from typing import Literal, Union
1111

1212
import requests
1313
import sidefx
@@ -35,7 +35,7 @@ def create_sidefx_service(client_id: str, client_secret_key: str):
3535
)
3636

3737

38-
def get_sidefx_platform() -> Literal["win64"] | Literal["macos"] | Literal["linux"]:
38+
def get_sidefx_platform() -> Union[Literal["win64"], Literal["macos"], Literal["linux"]]:
3939
"""Get the active platform usable for SideFX platform API calls
4040
Returns:
4141
str: The active platform

0 commit comments

Comments
 (0)