Skip to content

Commit

Permalink
'float' -> 'float, None'
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffLIrion committed Dec 12, 2020
1 parent c15eeab commit 5cf22e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions adb_shell/transport/base_transport_async.py
Expand Up @@ -34,7 +34,7 @@ async def connect(self, transport_timeout_s):
Parameters
----------
transport_timeout_s : float
transport_timeout_s : float, None
A connection timeout
"""
Expand All @@ -47,7 +47,7 @@ async def bulk_read(self, numbytes, transport_timeout_s):
----------
numbytes : int
The maximum amount of data to be received
transport_timeout_s : float
transport_timeout_s : float, None
A timeout for the read operation
Returns
Expand All @@ -65,7 +65,7 @@ async def bulk_write(self, data, transport_timeout_s):
----------
data : bytes
The data to be sent
transport_timeout_s : float
transport_timeout_s : float, None
A timeout for the write operation
Returns
Expand Down

0 comments on commit 5cf22e4

Please sign in to comment.