From c5c4f7d5b3f9643baafc067388168932c1a2d81e Mon Sep 17 00:00:00 2001 From: Charles Cooper Date: Thu, 1 Jun 2023 15:01:26 -0400 Subject: [PATCH] fix lint --- vyper/evm/opcodes.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vyper/evm/opcodes.py b/vyper/evm/opcodes.py index 0d9220974d..00e0986939 100644 --- a/vyper/evm/opcodes.py +++ b/vyper/evm/opcodes.py @@ -7,7 +7,9 @@ # 1. Fork rules go from oldest (lowest value) to newest (highest value). # 2. Fork versions aren't actually tied to anything. They are not a part of our # official API. *DO NOT USE THE VALUES FOR ANYTHING IMPORTANT* besides versioning. -# 3. Per VIP-3365, we support mainnet fork choice rules up to 1 year old (and may optionally have forward support for experimental/unreleased fork choice rules) +# 3. Per VIP-3365, we support mainnet fork choice rules up to 1 year old +# (and may optionally have forward support for experimental/unreleased +# fork choice rules) _evm_versions = ("istanbul", "berlin", "london", "paris", "shanghai", "cancun") EVM_VERSIONS: dict[str, int] = dict((v, i) for i, v in enumerate(_evm_versions))