Skip to content

Commit

Permalink
Merge pull request #3532 from jamesstidard/docs-code-option-clarfication
Browse files Browse the repository at this point in the history
docs: code option clarification
  • Loading branch information
frostming authored Mar 8, 2019
2 parents 7dbd5fe + c72bc5f commit 6b8745d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pipenv/cli/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,8 +294,9 @@ def callback(ctx, param, value):
if value:
state.installstate.code = value
return value
return option("--code", "-c", nargs=1, default=False, help="Import from codebase.",
callback=callback, expose_value=False)(f)
return option("--code", "-c", nargs=1, default=False, help="Install packages "
"automatically discovered from import statements.", callback=callback,
expose_value=False)(f)


def deploy_option(f):
Expand Down

0 comments on commit 6b8745d

Please sign in to comment.