Skip to content

Commit

Permalink
updated to +
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kovalsky committed Jul 25, 2024
1 parent 97e3b31 commit efbf34b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sempy_labs/_helper_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def get_direct_lake_sql_endpoint(dataset: str, workspace: Optional[str] = None)
for e in tom.model.Expressions:
if e.Name == "DatabaseQuery":
expr = e.Expression
matches = re.findall(r'"([^"]*)"', expr)
matches = re.findall(r'"([^"]+)"', expr)
sqlEndpointId = matches[1]

if sqlEndpointId is None:
Expand Down

0 comments on commit efbf34b

Please sign in to comment.