Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
SantaSpeen committed Feb 22, 2022
1 parent f81172a commit e63bd01
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ import getpass

cli = Console(prompt_in=">", prompt_out="]:")

def cli_echo(x: str):
def cli_echo(argv: list):
""" Help message here """

message = "Echo message: " + x
message = f"argv: {argv}"

return message

Expand Down
4 changes: 2 additions & 2 deletions README_RU.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import getpass

cli = Console(prompt_in=">", prompt_out="]:")

def cli_echo(x: str):
def cli_echo(argv: list):
""" Help message here """

message = "Echo message: " + x
message = f"argv: {argv}"

return message

Expand Down

0 comments on commit e63bd01

Please sign in to comment.