Skip to content

Commit

Permalink
Minor command description update
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed Feb 29, 2020
1 parent 254bcc7 commit 7ced495
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jupyter_cache/cli/commands/cmd_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def cache_file(db, nbpath, validate, overwrite, artifact_paths=()):
@options.VALIDATE_NB
@options.OVERWRITE_CACHED
def cache_nb(cache_path, artifact_paths, nbpath, validate, overwrite):
"""Cache a notebook that has already been executed."""
"""Cache a notebook, with possible artefact files."""
db = get_cache(cache_path)
success = cache_file(db, nbpath, validate, overwrite, artifact_paths)
if success:
Expand Down
2 changes: 1 addition & 1 deletion jupyter_cache/cli/commands/cmd_stage.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def stage_nbs(cache_path, nbpaths):
@options.NB_PATH
@options.CACHE_PATH
def stage_nb(cache_path, nbpath, asset_paths):
"""Stage a notebook, with possible assets."""
"""Stage a notebook, with possible asset files."""
db = get_cache(cache_path)
db.stage_notebook_file(nbpath, asset_paths)
click.secho("Success!", fg="green")
Expand Down

0 comments on commit 7ced495

Please sign in to comment.