We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79b95ef commit d853411Copy full SHA for d853411
1 file changed
.github/scripts/houdini.py
@@ -7,7 +7,7 @@
7
import shutil
8
import stat
9
import subprocess
10
-from typing import Literal
+from typing import Literal, Union
11
12
import requests
13
import sidefx
@@ -35,7 +35,7 @@ def create_sidefx_service(client_id: str, client_secret_key: str):
35
)
36
37
38
-def get_sidefx_platform() -> Literal["win64"] | Literal["macos"] | Literal["linux"]:
+def get_sidefx_platform() -> Union[Literal["win64"], Literal["macos"], Literal["linux"]]:
39
"""Get the active platform usable for SideFX platform API calls
40
Returns:
41
str: The active platform
0 commit comments