Merge pull request #9143 from bluetech/docs-stash-typo
Fix syntax typo in writing_hook_functions.rst
This commit is contained in:
commit
631c8b4df2
|
@ -328,8 +328,8 @@ top level of your plugin:
|
||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
been_there_key: pytest.StashKey[bool]()
|
been_there_key = pytest.StashKey[bool]()
|
||||||
done_that_key: pytest.StashKey[str]()
|
done_that_key = pytest.StashKey[str]()
|
||||||
|
|
||||||
then use the keys to stash your data at some point:
|
then use the keys to stash your data at some point:
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue