We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fe69d7 commit 65d34f4Copy full SHA for 65d34f4
2 files changed
docs/source/advancedusage/custom_handler.md
@@ -8,7 +8,7 @@ This example shows a custom handler of `newmodeltype` type.
8
from vetiver.handlers.base import BaseHandler
9
10
class CustomHandler(BaseHandler):
11
- def __init__(model, ptype_data):
+ def __init__(self, model, ptype_data):
12
super().__init__(model, ptype_data)
13
14
model_type = staticmethod(lambda: newmodeltype)
docs/source/index.rst
@@ -10,7 +10,7 @@ You can install the released version of vetiver from `PyPI <https://pypi.org/pro
.. code-block:: bash
- pip install vetiver
+ python -m pip install vetiver
15
And the development version from `GitHub <https://github.com/rstudio/vetiver-python>`_ with:
16
0 commit comments