Skip to content

Commit

Permalink
Follow docs style
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewarmand committed Oct 15, 2022
1 parent 639ea7f commit 0879cc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/user/advanced.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1043,9 +1043,9 @@ backoff, within a Requests :class:`Session <requests.Session>` using the
total=3
backoff_factor=0.1,
status_forcelist=[502, 503, 504],
allowed_methods={"POST"},
allowed_methods={'POST'},
)
s.mount("https://", HTTPAdapter(max_retries=retries))
s.mount('https://', HTTPAdapter(max_retries=retries))

.. _`described here`: https://kenreitz.org/essays/2012/06/14/the-future-of-python-http
.. _`urllib3`: https://github.com/urllib3/urllib3
Expand Down

0 comments on commit 0879cc3

Please sign in to comment.