Skip to content

Commit

Permalink
Maybe internal test fix
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 564579235
  • Loading branch information
lego0901 authored and tfx-copybara committed Sep 12, 2023
1 parent 8f27b93 commit f07d027
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tfx/orchestration/experimental/core/pipeline_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import random
import threading
import time
from typing import Callable, List, Mapping, Optional, Sequence
from typing import Callable, Dict, List, Mapping, Optional, Sequence

from absl import flags
from absl import logging
Expand Down Expand Up @@ -1802,8 +1802,8 @@ def publish_intermediate_artifact(
mlmd_handle: metadata.Metadata,
execution_id: int,
output_key: str,
properties: Optional[dict[str, metadata_store_pb2.Value]],
custom_properties: Optional[dict[str, metadata_store_pb2.Value]],
properties: Optional[Dict[str, metadata_store_pb2.Value]],
custom_properties: Optional[Dict[str, metadata_store_pb2.Value]],
external_uri: Optional[str] = None,
temp_uri: Optional[str] = None,
) -> metadata_store_pb2.Artifact:
Expand Down

0 comments on commit f07d027

Please sign in to comment.