Skip to content

Commit

Permalink
chore: rm isort seed
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Mar 5, 2022
1 parent 6fb5ace commit 82d8eff
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 10 deletions.
5 changes: 0 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ repos:
hooks:
- id: check-yaml

- repo: https://github.com/asottile/seed-isort-config
rev: v2.2.0
hooks:
- id: seed-isort-config

- repo: https://github.com/pre-commit/mirrors-isort
rev: v5.9.3
hooks:
Expand Down
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,5 @@ markers = "fuzzing: Run Hypothesis fuzz test suite"
line_length = 100
force_grid_wrap = 0
include_trailing_comma = true
known_third_party = ["ape", "ape_ethereum", "click", "eip712", "eth_account", "eth_typing", "eth_utils", "hexbytes", "hid", "pytest", "rlp", "setuptools"]
known_first_party = ["ape_ledger", "conftest"]
multi_line_output = 3
use_parentheses = true
2 changes: 1 addition & 1 deletion tests/test_accounts.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
from ape.api import TransactionAPI
from ape.api.networks import LOCAL_NETWORK_NAME
from ape_ethereum.ecosystem import DynamicFeeTransaction, StaticFeeTransaction
from conftest import TEST_ADDRESS, TEST_ALIAS, TEST_HD_PATH, assert_account
from eip712.messages import EIP712Message, EIP712Type
from eth_account.messages import SignableMessage

from ape_ledger.accounts import AccountContainer, LedgerAccount
from ape_ledger.exceptions import LedgerSigningError
from conftest import TEST_ADDRESS, TEST_ALIAS, TEST_HD_PATH, assert_account


class Person(EIP712Type):
Expand Down
3 changes: 2 additions & 1 deletion tests/test_choices.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from ape_ledger.choices import AddressPromptChoice
from conftest import TEST_ADDRESS

from ape_ledger.choices import AddressPromptChoice


class TestAddressPromptChoice:
def test_get_user_selected_account(self, mocker, mock_ethereum_app):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
from ape import accounts
from ape._cli import cli
from ape.managers.accounts import AccountManager
from conftest import TEST_ADDRESS, TEST_HD_PATH, assert_account

from ape_ledger import LedgerAccount
from ape_ledger.hdpath import HDBasePath
from conftest import TEST_ADDRESS, TEST_HD_PATH, assert_account


def _get_container():
Expand Down

0 comments on commit 82d8eff

Please sign in to comment.