Skip to content

Commit

Permalink
v2.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
bluewatersql committed Jan 10, 2025
1 parent 573e689 commit a9b9b91
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Packages/FabricSync/FabricSync/Setup/FabricSetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,10 +400,14 @@ def _parse_user_config(self, data):
def _download_sync_notebook(self):
random_int = random.randint(1, 1000)
randomizer = f"0000{random_int}"
git_notebooks = [ \
git_notebooks = [
{"name": f"BQ-Sync-Notebook-v{self.data['version']}-{randomizer[-4:]}",
"url": f"{Installer.GIT_URL}/Notebooks/v{self.data['asset_version']}/BQ-Sync.ipynb",
"file_name": "BQ-Sync.ipynb"}]
"file_name": "BQ-Sync.ipynb"},
{"name": f"BQ-Sync-Maintenance-v{self.data['version']}-{randomizer[-4:]}",
"url": f"{Installer.GIT_URL}/Notebooks/v{self.data['asset_version']}/BQ-Sync-Maintenance.ipynb",
"file_name": "BQ-Sync-Maintenance.ipynb"}
]

try:
SetupUtils.download_notebooks(self.data["workspace_id"], self.token, git_notebooks, self.data, self.notebooks_path, self.use_local_artifacts)
Expand Down
Binary file modified dist/FabricSync-2.0.8-py3-none-any.whl
Binary file not shown.

0 comments on commit a9b9b91

Please sign in to comment.