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
4 changes: 2 additions & 2 deletions repo_subpaths_for_grammar_check.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ Status legend: `[ ]` pending, `[~]` in progress, `[x]` complete

## src/ethereum_spec_tools

- [ ] `src/ethereum_spec_tools/**/*.py` (~39 files)
- [x] `src/ethereum_spec_tools/**/*.py` (~39 files)

## src/ethereum_optimized

- [ ] `src/ethereum_optimized/**/*.py` (~4 files)
- [x] `src/ethereum_optimized/**/*.py` (~4 files)

---

Expand Down
2 changes: 1 addition & 1 deletion src/ethereum_spec_tools/evm_tools/t8n/t8n_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def __init__(self, t8n: "T8N", stdin: Optional[Dict] = None):
with open(t8n.options.input_alloc, "r") as f:
data = json.load(f)

# The json_to_state functions expects the values to hex
# The json_to_state function expects the values to be hex
# strings, so we convert them here.
for address, account in data.items():
for key, value in account.items():
Expand Down
2 changes: 1 addition & 1 deletion src/ethereum_spec_tools/lint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

def compare_ast(old: ast.AST, new: ast.AST) -> bool:
"""
Check if two nodes are the equal.
Check if two nodes are equal.
"""
if type(old) is not type(new):
return False
Expand Down
Loading