Skip to content

Commit

Permalink
chore(fmt): Drive by formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cdecker committed Aug 29, 2024
1 parent 5d57a35 commit 0678a73
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion libs/gl-client-py/glclient/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,13 @@ def pay(

return res.FromString(bytes(self.inner.call(uri, bytes(req))))

def trampoline_pay(self, bolt11: str, trampoline_node_id: bytes, amount_msat: Optional[int] = None, label: Optional[str] = None):
def trampoline_pay(
self,
bolt11: str,
trampoline_node_id: bytes,
amount_msat: Optional[int] = None,
label: Optional[str] = None
):
res = self.inner.trampoline_pay(
bolt11=bolt11,
trampoline_node_id=trampoline_node_id,
Expand Down

0 comments on commit 0678a73

Please sign in to comment.