Merge pull request #1402 from RJ722/patch-1

Docs: Highlight .get in backticks
This commit is contained in:
Erik Wrede 2022-08-13 14:18:21 +02:00 committed by GitHub
commit 8bdcec5cd7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,7 @@ In the Python ``Enum`` implementation you can access a member by initing the Enu
assert Color(1) == Color.RED
However, in Graphene ``Enum`` you need to call get to have the same effect:
However, in Graphene ``Enum`` you need to call `.get` to have the same effect:
.. code:: python