Skip to content

Commit

Permalink
fixed issue 139
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kovalsky committed Sep 13, 2024
1 parent fcdda13 commit 6c8ae59
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/sempy_labs/directlake/_directlake_schema_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ def direct_lake_schema_sync(

sempy.fabric._client._utils._init_analysis_services()
import Microsoft.AnalysisServices.Tabular as TOM
import System

if "lakehouse" in kwargs:
print(
Expand Down Expand Up @@ -99,7 +98,7 @@ def direct_lake_schema_sync(
table_name=table_name,
column_name=lakeCName,
source_column=lakeCName,
data_type=System.Enum.Parse(TOM.DataType, dt),
data_type=dt,
)
print(
f"{icons.green_dot} The '{lakeCName}' column in the '{lakeTName}' lakehouse table was added to the '{dataset}' semantic model within the '{workspace}' workspace."
Expand Down

0 comments on commit 6c8ae59

Please sign in to comment.