Skip to content

Commit 1e5239e

Browse files
committed
fix lint
1 parent 3d98b1f commit 1e5239e

File tree

1 file changed

+1
-1
lines changed
  • metadata-ingestion/src/datahub/ingestion/source

1 file changed

+1
-1
lines changed

metadata-ingestion/src/datahub/ingestion/source/vertexai.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ def _get_run_result_status(self, status: str) -> Union[str, RunResultTypeClass]:
250250
def _make_custom_properties_for_run(
251251
self, experiment: Experiment, run: ExperimentRun
252252
) -> dict:
253-
properties = dict[str, str]()
253+
properties: Dict[str, str] = dict()
254254
properties["externalUrl"] = self._make_experiment_run_external_url(
255255
experiment, run
256256
)

0 commit comments

Comments
 (0)