Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions newsfragments/2772.internal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Rename the newly-split ``eth`` module files to match convention.
4 changes: 2 additions & 2 deletions web3/eth/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from .async_eth import ( # noqa: F401
AsyncEth,
)
from .base import ( # noqa: F401
from .base_eth import ( # noqa: F401
BaseEth,
)
from .main import ( # noqa: F401
from .eth import ( # noqa: F401
Eth,
Contract,
)
2 changes: 1 addition & 1 deletion web3/eth/async_eth.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
AsyncContract,
AsyncContractCaller,
)
from web3.eth.base import (
from web3.eth.base_eth import (
BaseEth,
)
from web3.exceptions import (
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion web3/eth/main.py → web3/eth/eth.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
Contract,
ContractCaller,
)
from web3.eth.base import (
from web3.eth.base_eth import (
BaseEth,
)
from web3.exceptions import (
Expand Down