Skip to content

Commit

Permalink
fix: build doc
Browse files Browse the repository at this point in the history
  • Loading branch information
obatirou committed Jan 28, 2025
1 parent 0b2b825 commit 2f38e1c
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion src/ethereum/arrow_glacier/vm/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from ethereum_types.bytes import Bytes0
from ethereum_types.numeric import U256, Uint, ulen

from ethereum.exceptions import EthereumException
from ethereum.trace import (
EvmStop,
OpEnd,
Expand Down Expand Up @@ -51,7 +52,6 @@
from . import Environment, Evm
from .exceptions import (
AddressCollision,
EthereumException,
ExceptionalHalt,
InvalidContractPrefix,
InvalidOpcode,
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/berlin/vm/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from ethereum_types.bytes import Bytes0
from ethereum_types.numeric import U256, Uint, ulen

from ethereum.exceptions import EthereumException
from ethereum.trace import (
EvmStop,
OpEnd,
Expand Down Expand Up @@ -51,7 +52,6 @@
from . import Environment, Evm
from .exceptions import (
AddressCollision,
EthereumException,
ExceptionalHalt,
InvalidOpcode,
OutOfGasError,
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/byzantium/vm/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from ethereum_types.bytes import Bytes0
from ethereum_types.numeric import U256, Uint, ulen

from ethereum.exceptions import EthereumException
from ethereum.trace import (
EvmStop,
OpEnd,
Expand Down Expand Up @@ -50,7 +51,6 @@
from . import Environment, Evm
from .exceptions import (
AddressCollision,
EthereumException,
ExceptionalHalt,
InvalidOpcode,
OutOfGasError,
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/cancun/vm/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from ethereum_types.bytes import Bytes0
from ethereum_types.numeric import U256, Uint, ulen

from ethereum.exceptions import EthereumException
from ethereum.trace import (
EvmStop,
OpEnd,
Expand Down Expand Up @@ -51,7 +52,6 @@
from . import Environment, Evm
from .exceptions import (
AddressCollision,
EthereumException,
ExceptionalHalt,
InvalidContractPrefix,
InvalidOpcode,
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/constantinople/vm/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from ethereum_types.bytes import Bytes0
from ethereum_types.numeric import U256, Uint, ulen

from ethereum.exceptions import EthereumException
from ethereum.trace import (
EvmStop,
OpEnd,
Expand Down Expand Up @@ -50,7 +51,6 @@
from . import Environment, Evm
from .exceptions import (
AddressCollision,
EthereumException,
ExceptionalHalt,
InvalidOpcode,
OutOfGasError,
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/dao_fork/vm/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from ethereum_types.bytes import Bytes0
from ethereum_types.numeric import U256, Uint, ulen

from ethereum.exceptions import EthereumException
from ethereum.trace import (
EvmStop,
OpEnd,
Expand Down Expand Up @@ -48,7 +49,6 @@
from . import Environment, Evm
from .exceptions import (
AddressCollision,
EthereumException,
ExceptionalHalt,
InvalidOpcode,
StackDepthLimitError,
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/frontier/vm/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from ethereum_types.bytes import Bytes0
from ethereum_types.numeric import U256, Uint, ulen

from ethereum.exceptions import EthereumException
from ethereum.trace import (
EvmStop,
OpEnd,
Expand Down Expand Up @@ -48,7 +49,6 @@
from . import Environment, Evm
from .exceptions import (
AddressCollision,
EthereumException,
ExceptionalHalt,
InvalidOpcode,
StackDepthLimitError,
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/gray_glacier/vm/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from ethereum_types.bytes import Bytes0
from ethereum_types.numeric import U256, Uint, ulen

from ethereum.exceptions import EthereumException
from ethereum.trace import (
EvmStop,
OpEnd,
Expand Down Expand Up @@ -51,7 +52,6 @@
from . import Environment, Evm
from .exceptions import (
AddressCollision,
EthereumException,
ExceptionalHalt,
InvalidContractPrefix,
InvalidOpcode,
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/homestead/vm/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from ethereum_types.bytes import Bytes0
from ethereum_types.numeric import U256, Uint, ulen

from ethereum.exceptions import EthereumException
from ethereum.trace import (
EvmStop,
OpEnd,
Expand Down Expand Up @@ -48,7 +49,6 @@
from . import Environment, Evm
from .exceptions import (
AddressCollision,
EthereumException,
ExceptionalHalt,
InvalidOpcode,
StackDepthLimitError,
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/istanbul/vm/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from ethereum_types.bytes import Bytes0
from ethereum_types.numeric import U256, Uint, ulen

from ethereum.exceptions import EthereumException
from ethereum.trace import (
EvmStop,
OpEnd,
Expand Down Expand Up @@ -51,7 +52,6 @@
from . import Environment, Evm
from .exceptions import (
AddressCollision,
EthereumException,
ExceptionalHalt,
InvalidOpcode,
OutOfGasError,
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/london/vm/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
from ethereum_types.bytes import Bytes0
from ethereum_types.numeric import U256, Uint, ulen

from ethereum.exceptions import EthereumException
from ethereum.trace import (
EthereumException,
EvmStop,
OpEnd,
OpException,
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/muir_glacier/vm/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
from ethereum_types.bytes import Bytes0
from ethereum_types.numeric import U256, Uint, ulen

from ethereum.exceptions import EthereumException
from ethereum.trace import (
EthereumException,
EvmStop,
OpEnd,
OpException,
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/paris/vm/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from ethereum_types.bytes import Bytes0
from ethereum_types.numeric import U256, Uint, ulen

from ethereum.exceptions import EthereumException
from ethereum.trace import (
EvmStop,
OpEnd,
Expand Down Expand Up @@ -51,7 +52,6 @@
from . import Environment, Evm
from .exceptions import (
AddressCollision,
EthereumException,
ExceptionalHalt,
InvalidContractPrefix,
InvalidOpcode,
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/shanghai/vm/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from ethereum_types.bytes import Bytes0
from ethereum_types.numeric import U256, Uint, ulen

from ethereum.exceptions import EthereumException
from ethereum.trace import (
EvmStop,
OpEnd,
Expand Down Expand Up @@ -51,7 +52,6 @@
from . import Environment, Evm
from .exceptions import (
AddressCollision,
EthereumException,
ExceptionalHalt,
InvalidContractPrefix,
InvalidOpcode,
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/spurious_dragon/vm/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from ethereum_types.bytes import Bytes0
from ethereum_types.numeric import U256, Uint, ulen

from ethereum.exceptions import EthereumException
from ethereum.trace import (
EvmStop,
OpEnd,
Expand Down Expand Up @@ -50,7 +51,6 @@
from . import Environment, Evm
from .exceptions import (
AddressCollision,
EthereumException,
ExceptionalHalt,
InvalidOpcode,
OutOfGasError,
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum/tangerine_whistle/vm/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from ethereum_types.bytes import Bytes0
from ethereum_types.numeric import U256, Uint, ulen

from ethereum.exceptions import EthereumException
from ethereum.trace import (
EvmStop,
OpEnd,
Expand Down Expand Up @@ -48,7 +49,6 @@
from . import Environment, Evm
from .exceptions import (
AddressCollision,
EthereumException,
ExceptionalHalt,
InvalidOpcode,
StackDepthLimitError,
Expand Down

0 comments on commit 2f38e1c

Please sign in to comment.