Skip to content

Commit 5e37db1

Browse files
committed
Fix code format
1 parent 69ab199 commit 5e37db1

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

examples/full_stack/server.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@
2020
block_forst_project_id = os.environ.get("BLOCKFROST_ID")
2121

2222
# Use BlockFrostChainContext for simplicity. You can also implement your own chain context.
23-
chain_context = BlockFrostChainContext(block_forst_project_id,
24-
base_url="https://cardano-preview.blockfrost.io/api")
23+
chain_context = BlockFrostChainContext(
24+
block_forst_project_id, base_url="https://cardano-preview.blockfrost.io/api"
25+
)
2526

2627

2728
def build_transaction(data):

pycardano/serialization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from __future__ import annotations
44

55
import re
6-
from collections import OrderedDict, defaultdict, UserList
6+
from collections import OrderedDict, UserList, defaultdict
77
from copy import deepcopy
88
from dataclasses import Field, dataclass, fields
99
from datetime import datetime

test/pycardano/test_serialization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
ArrayCBORSerializable,
99
CBORSerializable,
1010
DictCBORSerializable,
11+
IndefiniteList,
1112
MapCBORSerializable,
1213
limit_primitive_type,
13-
IndefiniteList,
1414
)
1515

1616

0 commit comments

Comments
 (0)