@@ -280,7 +280,7 @@ def token_network_connect(
280280 initial_channel_target : int = 3 ,
281281 joinable_funds_target : float = 0.4 ,
282282 ) -> None :
283- """ Automatically maintain channels open for the given token network.
283+ """Automatically maintain channels open for the given token network.
284284
285285 Args:
286286 token_address: the ERC20 token network to connect to.
@@ -379,7 +379,7 @@ def channel_open(
379379 reveal_timeout : BlockTimeout = None ,
380380 retry_timeout : NetworkTimeout = DEFAULT_RETRY_TIMEOUT ,
381381 ) -> ChannelID :
382- """ Open a channel with the peer at `partner_address`
382+ """Open a channel with the peer at `partner_address`
383383 with the given `token_address`.
384384 """
385385 if settle_timeout is None :
@@ -532,7 +532,7 @@ def channel_open(
532532 return channel_state .identifier
533533
534534 def mint_token_for (self , token_address : TokenAddress , to : Address , value : TokenAmount ) -> None :
535- """ Try to mint `value` units of the token at `token_address` and
535+ """Try to mint `value` units of the token at `token_address` and
536536 assign them to `to`, using `mintFor`.
537537
538538 Raises:
@@ -552,7 +552,7 @@ def set_total_channel_withdraw(
552552 total_withdraw : WithdrawAmount ,
553553 retry_timeout : NetworkTimeout = DEFAULT_RETRY_TIMEOUT ,
554554 ) -> None :
555- """ Set the `total_withdraw` in the channel with the peer at `partner_address` and the
555+ """Set the `total_withdraw` in the channel with the peer at `partner_address` and the
556556 given `token_address`.
557557
558558 Raises:
@@ -625,7 +625,7 @@ def set_total_channel_deposit(
625625 total_deposit : TokenAmount ,
626626 retry_timeout : NetworkTimeout = DEFAULT_RETRY_TIMEOUT ,
627627 ) -> None :
628- """ Set the `total_deposit` in the channel with the peer at `partner_address` and the
628+ """Set the `total_deposit` in the channel with the peer at `partner_address` and the
629629 given `token_address` in order to be able to do transfers.
630630
631631 Raises:
@@ -781,7 +781,7 @@ def set_reveal_timeout(
781781 partner_address : Address ,
782782 reveal_timeout : BlockTimeout ,
783783 ) -> None :
784- """ Set the `reveal_timeout` in the channel with the peer at `partner_address` and the
784+ """Set the `reveal_timeout` in the channel with the peer at `partner_address` and the
785785 given `token_address`.
786786
787787 Raises:
0 commit comments