Skip to content

Commit

Permalink
fix circular dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus Cozowicz committed Jun 10, 2024
1 parent d51b350 commit 5289488
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion sempy_labs/_generate_semantic_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import sempy.fabric as fabric
import pandas as pd
import json, base64, time, os
from sempy_labs._generate_semantic_model import get_semantic_model_bim
from typing import List, Optional, Union
from sempy_labs._helper_functions import resolve_lakehouse_name
from sempy_labs.lakehouse._lakehouse import lakehouse_attached
Expand Down
2 changes: 1 addition & 1 deletion sempy_labs/lakehouse/_get_lakehouse_columns.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
resolve_lakehouse_id,
)
from typing import Optional
from sempy_labs.lakehouse._get_lakehouse_tables import get_lakehouse_tables


def get_lakehouse_columns(
Expand All @@ -32,6 +31,7 @@ def get_lakehouse_columns(
pandas.DataFrame
Shows the tables/columns within a lakehouse and their properties.
"""
from sempy_labs.lakehouse._get_lakehouse_tables import get_lakehouse_tables

df = pd.DataFrame(
columns=[
Expand Down

0 comments on commit 5289488

Please sign in to comment.