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 904ff4e commit c15eeab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions adb_shell/transport/base_transport.py
Expand Up @@ -43,7 +43,7 @@ def connect(self, transport_timeout_s):
Parameters
----------
transport_timeout_s : float
transport_timeout_s : float, None
A connection timeout
"""
Expand All @@ -56,7 +56,7 @@ 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 @@ -74,7 +74,7 @@ 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 c15eeab

Please sign in to comment.