Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changes here will be overwritten by Copier; NEVER EDIT MANUALLY
_commit: v0.4.0-51-g4067ef6
_commit: v0.4.0-53-g5efe685
_src_path: git+https://github.com/twsl/python-project-template
author_email: 45483159+twsl@users.noreply.github.com
author_username: twsl
Expand Down
3 changes: 1 addition & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@
"ms-python.python",
"astral-sh.ty",
"ms-toolsai.jupyter",
"GitHub.copilot",
"GitHub.copilot-chat",
"github.vscode-github-actions",
"SanjulaGanepola.github-local-actions",
Expand Down Expand Up @@ -131,4 +130,4 @@
},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
"remoteUser": "root"
}
}
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -169,4 +169,4 @@ cython_debug/
/models/

# Databricks
/databricks/
/databricks/
1 change: 0 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"ms-python.python",
"astral-sh.ty",
"ms-toolsai.jupyter",
"GitHub.copilot",
"GitHub.copilot-chat",
"github.vscode-github-actions",
"SanjulaGanepola.github-local-actions",
Expand Down
12 changes: 6 additions & 6 deletions notebooks/diagnostic_editable_imports.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"except ImportError as e:\n",
" print(f\"⚠️ dbx-patch is not installed: {e}\")\n",
" print(\"\\nInstall it with:\")\n",
" print(\" %pip install dbx-patch\")\n"
" print(\" %pip install dbx-patch\")"
]
},
{
Expand Down Expand Up @@ -111,7 +111,7 @@
"\n",
"except ImportError as e:\n",
" print(f\"⚠️ Cannot import dbx_patch: {e}\")\n",
" print(\"Install dbx-patch first: %pip install dbx-patch\")\n"
" print(\"Install dbx-patch first: %pip install dbx-patch\")"
]
},
{
Expand Down Expand Up @@ -174,7 +174,7 @@
" print(f\"⚠️ Error: {e}\")\n",
" import traceback\n",
"\n",
" traceback.print_exc()\n"
" traceback.print_exc()"
]
},
{
Expand Down Expand Up @@ -302,7 +302,7 @@
"if result.editable_paths:\n",
" print(\"\\nEditable paths:\")\n",
" for path in result.editable_paths:\n",
" print(f\" - {path}\")\n"
" print(f\" - {path}\")"
]
},
{
Expand Down Expand Up @@ -356,7 +356,7 @@
"print()\n",
"print(\"# Example:\")\n",
"print(\"# from your_package import some_function\")\n",
"print(\"# print(some_function())\")\n"
"print(\"# print(some_function())\")"
]
},
{
Expand Down Expand Up @@ -392,7 +392,7 @@
"if result.importable_packages:\n",
" print(\"\\nImportable packages:\")\n",
" for pkg in result.importable_packages:\n",
" print(f\" • {pkg}\")\n"
" print(f\" • {pkg}\")"
]
},
{
Expand Down
Loading
Loading