From e9713306df7753e9fe7397ff559cbbcb9d4cae00 Mon Sep 17 00:00:00 2001 From: Stephen Nixon <45946693+arrowtype@users.noreply.github.com> Date: Fri, 16 Aug 2024 22:48:58 -0400 Subject: [PATCH] Update creating-command-line-tools.rst to fix typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The import statement, as written, fails. It doesn’t match the name of the file that is set up with the greet() function. --- source/guides/creating-command-line-tools.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/guides/creating-command-line-tools.rst b/source/guides/creating-command-line-tools.rst index 9f040ce7d..49ce0c9ed 100644 --- a/source/guides/creating-command-line-tools.rst +++ b/source/guides/creating-command-line-tools.rst @@ -78,7 +78,7 @@ in :file:`cli.py`: import typer - from .hello import greet + from .greet import greet app = typer.Typer()