Skip to content

Commit

Permalink
Fix code format
Browse files Browse the repository at this point in the history
  • Loading branch information
cffls committed Dec 17, 2022
1 parent 69ab199 commit 5e37db1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions examples/full_stack/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@
block_forst_project_id = os.environ.get("BLOCKFROST_ID")

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


def build_transaction(data):
Expand Down
2 changes: 1 addition & 1 deletion pycardano/serialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from __future__ import annotations

import re
from collections import OrderedDict, defaultdict, UserList
from collections import OrderedDict, UserList, defaultdict
from copy import deepcopy
from dataclasses import Field, dataclass, fields
from datetime import datetime
Expand Down
2 changes: 1 addition & 1 deletion test/pycardano/test_serialization.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
ArrayCBORSerializable,
CBORSerializable,
DictCBORSerializable,
IndefiniteList,
MapCBORSerializable,
limit_primitive_type,
IndefiniteList,
)


Expand Down

0 comments on commit 5e37db1

Please sign in to comment.