Skip to content

Commit d1725fa

Browse files
committed
docs: fix python highlighting
1 parent cb4365d commit d1725fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/usage/updating.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ In the case the service you are dealing with requires PUT method, you have two o
2424
The first option allows you to change the used HTTP method for a single call via
2525
the key word parameter *method* of the method *update_entity*.
2626

27-
... code-block:: python
27+
.. code-block:: python
2828
2929
update_request = northwind.entity_sets.Customers.update_entity(CustomerID='ALFKI', method='PUT')
3030
3131
If you need to run more update requests for different entity sets and all of them must be *PUT*,
3232
then you can consider setting the default service's update method to *PUT*.
3333

34-
... code-block:: python
34+
.. code-block:: python
3535
3636
northwind.config['http']['update_method'] = 'PUT'

0 commit comments

Comments
 (0)