Skip to content

Commit

Permalink
fix missing default value in the doc (#4854)
Browse files Browse the repository at this point in the history
Fix the missing default value in the document function signature.
According to source code [client.py](https://github.com/aio-libs/aiohttp/blob/master/aiohttp/client.py) line 151, the defalut value should be `None`.
  • Loading branch information
WH-2099 authored Oct 15, 2020
1 parent 0deb52f commit d1473a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/client_reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1504,7 +1504,7 @@ ClientTimeout
^^^^^^^^^^^^^

.. class:: ClientTimeout(*, total=None, connect=None, \
sock_connect, sock_read=None)
sock_connect=None, sock_read=None)

A data class for client timeout settings.

Expand Down

0 comments on commit d1473a1

Please sign in to comment.