Skip to content

Commit

Permalink
Merge pull request #16 from mrjsj/chore/clean-up
Browse files Browse the repository at this point in the history
chore: clean-up
  • Loading branch information
mrjsj authored Dec 1, 2024
2 parents acf51ce + b0bae7c commit 4f2d8d1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/msfabricutils/fabric_duckdb_connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

# Avoid import errors outside Fabric environments
try:
from sempy import fabric #noqa: F401
from sempy import fabric # noqa: F401
except ModuleNotFoundError:
pass

Expand Down Expand Up @@ -379,7 +379,9 @@ def _register_lakehouse_tables(
}

self._registered_tables.append(table_information)
print(f"Table `{workspace_name}.{lakehouse_name}.{self._default_schema}.{table['name']}` registered ...")
print(
f"Table `{workspace_name}.{lakehouse_name}.{self._default_schema}.{table['name']}` registered ..."
)

def register_workspace_lakehouses(self, workspace_id: str, lakehouses: str | list[str] = None):
"""Register one or more lakehouses from a workspace for querying.
Expand Down

0 comments on commit 4f2d8d1

Please sign in to comment.