Skip to content

Commit

Permalink
Fix formatting and sort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dmuhs committed Apr 19, 2020
1 parent eba5241 commit b4fc650
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions tests/test_api_handler.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import pytest
import requests_mock

from web3data.exceptions import APIError
from web3data.chains import Chains
from web3data.exceptions import APIError
from web3data.handlers import APIHandler
from web3data.handlers.address import AddressHandler
from web3data.handlers.block import BlockHandler
Expand All @@ -15,11 +15,7 @@
TEST_KEY = "test-key"
TEST_ID = "test-id"
TEST_RPC = {"test": "response"}
ALLOWED_CHAINS = (
Chains.BTC,
Chains.ETH,
Chains.ETH_RINKEBY,
)
ALLOWED_CHAINS = (Chains.BTC, Chains.ETH, Chains.ETH_RINKEBY)
NON_RPC_CHAINS = (
Chains.AION,
Chains.BCH,
Expand Down

0 comments on commit b4fc650

Please sign in to comment.