blackified

Signed-off-by: Jürgen Eckel <juergen@riddleandcode.com>
This commit is contained in:
Jürgen Eckel 2023-01-26 17:14:25 +01:00
parent 4febf487f0
commit 465befdccd
No known key found for this signature in database
3 changed files with 7 additions and 8 deletions

View File

@ -400,7 +400,6 @@ class Planetmint(object):
return True return True
def validate_transfer_inputs(self, tx, current_transactions=[]) -> bool: def validate_transfer_inputs(self, tx, current_transactions=[]) -> bool:
input_txs, input_conditions = self.get_input_txs_and_conditions(tx.inputs, current_transactions) input_txs, input_conditions = self.get_input_txs_and_conditions(tx.inputs, current_transactions)

View File

@ -124,7 +124,6 @@ def test_create_decompose_output(b, user_pk, user_sk, signed_create_tx, _bdb):
assert b.validate_transaction(signed_decompose_create_tx) assert b.validate_transaction(signed_decompose_create_tx)
def test_create_valid_divisible_asset(b, user_pk, user_sk, _bdb): def test_create_valid_divisible_asset(b, user_pk, user_sk, _bdb):
tx = Create.generate([user_pk], [([user_pk], 2)]) tx = Create.generate([user_pk], [([user_pk], 2)])
tx_signed = tx.sign([user_sk]) tx_signed = tx.sign([user_sk])

View File

@ -5,5 +5,6 @@
import pytest import pytest
def test_something(): def test_something():
return True return True