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
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def _get_multiplier(unit: str) -> int:


class HexNumber(Number):
"""Class that helps represent an hexadecimal numbers in tests."""
"""Class that helps represent hexadecimal numbers in tests."""

def __str__(self) -> str:
"""Return the string representation of the number."""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def store_next(
hint: str = "",
) -> StorageKeyValueType:
"""
Store a value in the storage and returns the key where the value is
Store a value in the storage and return the key where the value is
stored.

Increments the key counter so the next time this function is called,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __repr_args__(self) -> Any:

# Convert field values based on their type. This ensures consistency
# between JSON and Python object representations. Should a custom
# `__repr__` be needed for a specific type, it can added in the match
# `__repr__` be needed for a specific type, it can be added in the match
# statement below. Otherwise, the default string representation is
# used.
repr_attrs: List[Tuple[str, Any]] = []
Expand Down
2 changes: 1 addition & 1 deletion repo_subpaths_for_grammar_check.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Status legend: `[ ]` pending, `[~]` in progress, `[x]` complete
- [x] `packages/testing/src/execution_testing/specs/**/*.py` (~28 files)
- [x] `packages/testing/src/execution_testing/fixtures/**/*.py` (~16 files)
- [x] `packages/testing/src/execution_testing/client_clis/**/*.py` (~21 files)
- [ ] `packages/testing/src/execution_testing/base_types/**/*.py` (~15 files)
- [x] `packages/testing/src/execution_testing/base_types/**/*.py` (~15 files)
- [ ] `packages/testing/src/execution_testing/forks/**/*.py` (~13 files)
- [ ] `packages/testing/src/execution_testing/tools/**/*.py`, `exceptions/**/*.py` (~24 files)
- [ ] `packages/testing/src/execution_testing/vm/**/*.py`, `rpc/**/*.py`, `config/**/*.py` (~17 files)
Expand Down
Loading