-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Move CLI commands to seperate groups - Add click-completion - Make imports in CLI lazy, to improve responsiveness - Update README.md
- Loading branch information
1 parent
96c161d
commit 66912e3
Showing
14 changed files
with
389 additions
and
260 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +0,0 @@ | ||
from .main import JupyterCacheBase, DEFAULT_CACHE_LIMIT # noqa: F401 | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
import click_completion | ||
|
||
# Activate the completion of parameter types provided by the click_completion package | ||
click_completion.init() | ||
|
||
from .cmd_cache import * # noqa: F401,F403 | ||
from .cmd_config import * # noqa: F401,F403 | ||
from .cmd_exec import * # noqa: F401,F403 | ||
from .cmd_stage import * # noqa: F401,F403 |
Oops, something went wrong.