Skip to content

Commit b88c242

Browse files
feat(orc-372): add isort to makefile
1 parent edcd8b7 commit b88c242

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ lint: up
5050
$(EXEC_CMD) pylint src tests --jobs=2
5151
$(EXEC_CMD) mypy src
5252

53+
isort: up
54+
$(EXEC_CMD) isort $(ORACLE_ISORT_PATH)
55+
5356
# Use ORACLE_TEST_PATH to run specific tests, e.g.:
5457
# make test ORACLE_TEST_PATH=tests/providers_clients/test_keys_api_client.py
5558
test: up

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
from src.web3py.extensions import (
1616
CSM,
1717
ConsensusClientModule,
18+
FallbackProviderModule,
1819
KeysAPIClientModule,
1920
LidoContracts,
2021
LidoValidatorsProvider,
2122
TransactionUtils,
2223
)
2324
from src.web3py.types import Web3
24-
from src.web3py.extensions import FallbackProviderModule
2525

2626
UNIT_MARKER = 'unit'
2727
INTEGRATION_MARKER = 'integration'

0 commit comments

Comments
 (0)