Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
πŸ₯’ nit: Docstring
  • Loading branch information
raxhvl committed Nov 22, 2024
commit 62eb22daeba1cf7e7971a8e1a6c185b17b7a1f03
7 changes: 3 additions & 4 deletions src/cli/make/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
enabling developers to concentrate on the core aspects of specification testing.


The module verifies the presence of a valid subcommand and calls the appropriate
function for the subcommand. If an invalid subcommand is present, it throws an error
and shows a list of valid subcommands. If no subcommand is present, it shows a list
of valid subcommands to choose from.
The module calls the appropriate function for the subcommand. If an invalid subcommand
is chosen, it throws an error and shows a list of valid subcommands. If no subcommand
is present, it shows a list of valid subcommands to choose from.
"""

import click
Expand Down
2 changes: 1 addition & 1 deletion src/cli/make/commands/test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
This module provides a CLI command to scaffold a test file.
This module provides a CLI command to scaffold a test file.

The `test` command guides the user through a series of prompts to generate a test file
based on the selected test type, fork, EIP number, and EIP name. The generated test file
Expand Down