Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 8, 2023
1 parent 8747b27 commit 0881594
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion btclib/psbt/psbt.py
Expand Up @@ -500,7 +500,8 @@ def join_psbts(
sort_inputs: Callable[[PsbtIn], int] | None = None,
sort_outputs: Callable[[PsbtOut], int] | None = None,
) -> Psbt:
"""Join multiple psbts into a single one by merging inputsand outputs
"""Join multiple psbts into a single one by merging inputsand outputs.
inputs/outputs are shuffled by default. If shuffle=False, they are simply
concatenated in the same order as psbts are specified. A specific ordering can be
specified via sort_{inputs|outputs}, which overwrite shuffle when present.
Expand Down
2 changes: 1 addition & 1 deletion tests/psbt/test_psbt.py
Expand Up @@ -14,8 +14,8 @@
from os import path

import pytest
from btclib.bip32 import BIP32KeyOrigin

from btclib.bip32 import BIP32KeyOrigin
from btclib.ec import sec_point
from btclib.ecc import dsa
from btclib.exceptions import BTClibValueError
Expand Down

0 comments on commit 0881594

Please sign in to comment.