Commit 2b6665b 1 parent 614edfe commit 2b6665b Copy full SHA for 2b6665b
File tree 1 file changed +2
-2
lines changed
metadata-ingestion/src/datahub/ingestion/source
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -612,7 +612,7 @@ def emit_chart_mces(self) -> Iterable[MetadataWorkUnit]:
612
612
for chart_data in self .paginate_entity_api_results ("chart/" , PAGE_SIZE ):
613
613
try :
614
614
chart_id = str (chart_data .get ("id" ))
615
- chart_name = str ( chart_data .get ("slice_name" , "" ) )
615
+ chart_name = chart_data .get ("slice_name" , "" )
616
616
617
617
if not self .config .chart_pattern .allowed (chart_name ):
618
618
self .report .report_dropped (
@@ -787,7 +787,7 @@ def construct_dataset_from_dataset_data(
787
787
env = self .config .env ,
788
788
)
789
789
790
- # if we sql, we label the datasets as virtual
790
+ # if we have sql, we label the datasets as virtual
791
791
if sql :
792
792
tag_urn = f"urn:li:tag:{ self .platform } :virtual"
793
793
upstream_lineage = self .generate_virtual_dataset_lineage (
You can’t perform that action at this time.
0 commit comments