-
Notifications
You must be signed in to change notification settings - Fork 2
fix: rename notebook to load #189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -96,7 +96,7 @@ def _load_module(owner: str, slug: str, filename: str, path: Path) -> ModuleType | |
| return module | ||
|
|
||
|
|
||
| def notebook( | ||
| def load( | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Renaming the public function from Useful? React with 👍 / 👎. |
||
| workspace: str, | ||
| *, | ||
| filename: str | None = None, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: aqora-io/cli
Length of output: 248
Add explicit
__all__definition to the module's__init__.pyto properly expose the public API.The
loadimport is correct, butpython/aqora_cli/__init__.pylacks an__all__definition. Other modules in this package (e.g.,pyarrow.py,fsspec.py) explicitly define their public API. Add__all__topython/aqora_cli/__init__.pyto includeloadand any other intended public exports, ensuring consistency across the package.🤖 Prompt for AI Agents