Problem: Flake8 style complaints

Solution: Made things prettier
This commit is contained in:
z-bowen 2018-07-27 16:18:09 +02:00
parent a231c06b2e
commit df3078b5a6
2 changed files with 1 additions and 2 deletions

View File

@ -326,7 +326,7 @@ def inputs(user_pk, b, alice):
from bigchaindb.models import Transaction
# create blocks with transactions for `USER` to spend
print('Fuck you')
for height in range(1,4):
for height in range(1, 4):
transactions = [
Transaction.create(
[alice_pubkey(alice)],

View File

@ -57,7 +57,6 @@ class TestBigchainApi(object):
with pytest.raises(DoubleSpend):
b.validate_transaction(transfer_tx2)
@pytest.mark.genesis
@pytest.mark.tendermint
def test_get_block_status_for_tx_with_double_inclusion(self, b, alice):