Standardize format
Some checks failed
Run Python tests (through Pytest) / Test (push) Failing after 23s
Verify Python project can be installed, loaded and have version checked / Test (push) Failing after 21s

This commit is contained in:
Jon Michael Aanes 2025-04-12 20:56:20 +02:00
parent ba7f44e484
commit 665f070028
3 changed files with 4 additions and 1 deletions

View File

@ -25,7 +25,7 @@ from frozendict import frozendict
from .pbc_types import (Address, Signature, HashSha256, Transaction, from .pbc_types import (Address, Signature, HashSha256, Transaction,
SignedTransaction, SignedTransactionInnerPart) SignedTransaction, SignedTransactionInnerPart)
from _version import __version__ #noqa: F401 from ._version import __version__ #noqa: F401
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)

1
requirements.txt Normal file
View File

@ -0,0 +1 @@
python-ecdsa

2
test/test_init.py Normal file
View File

@ -0,0 +1,2 @@
def test_init():
import pbc_client #noqa: F401