Merge pull request #9143 from bluetech/docs-stash-typo

Fix syntax typo in writing_hook_functions.rst
This commit is contained in:
Ran Benita 2021-10-01 11:38:15 +03:00 committed by GitHub
commit 631c8b4df2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -328,8 +328,8 @@ top level of your plugin:
.. code-block:: python
been_there_key: pytest.StashKey[bool]()
done_that_key: pytest.StashKey[str]()
been_there_key = pytest.StashKey[bool]()
done_that_key = pytest.StashKey[str]()
then use the keys to stash your data at some point: