Skip to content

Commit

Permalink
Merge pull request EthTx#78 from EthTx/dev
Browse files Browse the repository at this point in the history
Fix semantics editor (EthTx#77)
  • Loading branch information
kchojn authored Jan 5, 2022
2 parents 2f26b56 + b45402a commit fe5a8a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ethtx_ce/frontend/semantics.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@

from __future__ import annotations

import logging
import json
from web3 import Web3
import logging
from typing import Optional, List, Dict

from ethtx.models.semantics_model import (
Expand All @@ -29,6 +28,7 @@
ParameterSemantics,
)
from flask import Blueprint, render_template, current_app, request, jsonify
from web3 import Web3

from . import frontend_route
from .deps import auth
Expand Down Expand Up @@ -67,7 +67,7 @@ def poke_abi():
def show_semantics_page(data: AddressSemantics) -> render_template:
if data:

data_dict = data.json()
data_dict = data.dict()

address = data.address
chain_id = data.chain_id
Expand Down

0 comments on commit fe5a8a3

Please sign in to comment.