diff --git a/docs/advanced.rst b/docs/advanced.rst index 8c585f33..43847cfd 100644 --- a/docs/advanced.rst +++ b/docs/advanced.rst @@ -581,8 +581,8 @@ For example: $ pipenv run echospam "indeed" I am really a very silly example indeed -You can also specify pacakge functions as callables such as: ``:``. These can also take arguments. -For exaple: +You can also specify pacakge functions as callables such as: ``:``. These can also take arguments. +For exaple: .. code-block:: toml @@ -592,8 +592,8 @@ For exaple: :: $ pipenv run my_func_with_args - $ pipenv run my_func_no_args - + $ pipenv run my_func_no_args + You can display the names and commands of your shortcuts by running ``pipenv scripts`` in your terminal. :: diff --git a/news/5396.doc.rst b/news/5396.doc.rst new file mode 100644 index 00000000..ba10e37f --- /dev/null +++ b/news/5396.doc.rst @@ -0,0 +1 @@ +Update pipenv docs for with example for callabale package functions in Pipfile scripts diff --git a/pipenv/cmdparse.py b/pipenv/cmdparse.py index cd1c1bcd..8ba46177 100644 --- a/pipenv/cmdparse.py +++ b/pipenv/cmdparse.py @@ -32,7 +32,9 @@ def _parse_toml_inline_table(value: tomlkit.items.InlineTable) -> str: if cmd_key == "call": module, _, func = str(value["call"]).partition(":") if not module or not func: - raise ScriptParseError("Callable must be like: name = {call = \"package.module:func('arg')\"}") + raise ScriptParseError( + "Callable must be like: name = {call = \"package.module:func('arg')\"}" + ) if re.search(r"\(.*?\)", func) is None: func += "()" return f'python -c "import {module} as _m; _m.{func}"'