Skip to content

Commit

Permalink
fixes on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastianMorawiec committed May 23, 2024
1 parent 43a2546 commit bca32aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# THIS FILE IS A SHIM TO REEXPORT SYMBOLS AS PUBLIC API
# DO NOT PUT ANY LOGIC INTO THIS FILE.

from orquestra.workflow_runtime.secrets import delete, get, list, set
from orquestra.workflow_shared.secrets import delete, get, list, set

__all__ = [
"delete",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Secret(NamedTuple):
# specific workspace.
workspace_id: t.Optional[str] = None

def __reduce__(self) -> str | tuple[t.Any, ...]:
def __reduce__(self) -> t.Union[str, tuple[t.Any, ...]]:
# We need to override the pickling behaviour for Secret
# This is because we override other dunder methods which cause the normal
# picling behaviour to fail.
Expand Down

0 comments on commit bca32aa

Please sign in to comment.